Skip to content

Commit

Permalink
Merge #316
Browse files Browse the repository at this point in the history
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 <psanders1@gmail.com>
  • Loading branch information
meili-bors[bot] and sanders41 authored Jan 9, 2023
2 parents 44522ee + 4674c69 commit 006ec06
Show file tree
Hide file tree
Showing 2 changed files with 272 additions and 246 deletions.
11 changes: 8 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ python-keycloak-client = "==0.2.3"
requests = "==2.28.1"

[dev-packages]
pytest = "==7.1.3"
pylint = "==2.15.7"
pytest = "==7.2.0"
pylint = "==2.15.9"
tox = "==3.27.1"
tox-pipenv = "==1.10.1"
wrapt = "*"
importlib_metadata = {version = "*", markers="python_version < '3.8'"}
zipp = {version = "*", markers="python_version < '3.8'"}
exceptiongroup = {version = "*", markers="python_version < '3.11'"}
tomli = {version = "*", markers="python_version < '3.11'"}
wrapt = {version = "*", markers="python_version < '3.11'"}
dill = {version = "*", markers="python_version < '3.11'"}
Loading

0 comments on commit 006ec06

Please sign in to comment.