Skip to content

Commit 006ec06

Browse files
Merge #316
316: Specify dependencies for python < 3.11 r=alallema a=sanders41 # Pull Request ## Related issue Fixes #287 Will also fix the pylint upgrade issue in PR https://github.com/meilisearch/docs-scraper/actions/runs/3754861523/jobs/6379438841 ## What does this PR do? - Updates the Pipfile to specify needed dependencies for python < 3.11. These dependencies seem to only be needed by pytest or pylint` so I made them dev dependencies ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Paul Sanders <[email protected]>
2 parents 44522ee + 4674c69 commit 006ec06

File tree

2 files changed

+272
-246
lines changed

2 files changed

+272
-246
lines changed

Pipfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ python-keycloak-client = "==0.2.3"
1212
requests = "==2.28.1"
1313

1414
[dev-packages]
15-
pytest = "==7.1.3"
16-
pylint = "==2.15.7"
15+
pytest = "==7.2.0"
16+
pylint = "==2.15.9"
1717
tox = "==3.27.1"
1818
tox-pipenv = "==1.10.1"
19-
wrapt = "*"
19+
importlib_metadata = {version = "*", markers="python_version < '3.8'"}
20+
zipp = {version = "*", markers="python_version < '3.8'"}
21+
exceptiongroup = {version = "*", markers="python_version < '3.11'"}
22+
tomli = {version = "*", markers="python_version < '3.11'"}
23+
wrapt = {version = "*", markers="python_version < '3.11'"}
24+
dill = {version = "*", markers="python_version < '3.11'"}

0 commit comments

Comments
 (0)