Skip to content

Commit 5e98619

Browse files
bors[bot]sanders41
andauthored
Merge #647
647: Specify dependencies for python < 3.11 r=alallema a=sanders41 # Pull Request ## Related issue I did some testing and think this will solve the issue with dependabot. I created the `Pipfile.lock` with python 3.11 then tested with the supported python versions < 3.11 and this removed the errors. I can't be sure how dependabot is doing it so there is a chance there could still be errors, but it seems like this will work. ## 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 a6dc063 + 1912612 commit 5e98619

File tree

2 files changed

+181
-189
lines changed

2 files changed

+181
-189
lines changed

Pipfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ tox-pipenv = "*"
1414
types-requests = "*"
1515
black = "*"
1616
isort = "*"
17+
importlib_metadata = {version = "*", markers="python_version < '3.8'"}
18+
zipp = {version = "*", markers="python_version < '3.8'"}
19+
exceptiongroup = {version = "*", markers="python_version < '3.11'"}
20+
tomli = {version = "*", markers="python_version < '3.11'"}
21+
wrapt = {version = "*", markers="python_version < '3.11'"}
22+
dill = {version = "*", markers="python_version < '3.11'"}
1723

1824
[packages]
1925
requests = "*"

0 commit comments

Comments
 (0)