-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: pin the dev requirements to major.minor compatible (#1054)
* Change the dependencies to be pinned to the major.minor compatible version. pyright doesn't use semvar, and breaks some checks in versions newer than the one we use, so exclude that. * Bump flake8 (and transitive) deps. * We need to explicitly include setuptools now. * Use Python 3.11 for now for the linting. * Use Py 3.11 for setup.py sdist too.
- Loading branch information
1 parent
c2f8216
commit bee7833
Showing
3 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
isort==5.11.4 | ||
autopep8==1.6.0 | ||
flake8==4.0.1 | ||
flake8-docstrings==1.6.0 | ||
flake8-builtins==2.1.0 | ||
pyproject-flake8==4.0.1 | ||
pep8-naming==0.13.2 | ||
pytest==7.2.1 | ||
isort~=5.11 | ||
autopep8~=1.6 | ||
flake8~=6.1 | ||
flake8-docstrings~=1.7 | ||
flake8-builtins~=2.1 | ||
pyproject-flake8~=6.1 | ||
pep8-naming~=0.13 | ||
pytest~=7.2 | ||
pyright==1.1.317 | ||
pytest-operator==0.23.0 | ||
coverage[toml]==7.0.5 | ||
typing_extensions==4.2.0 | ||
pytest-operator~=0.23 | ||
coverage[toml]~=7.0 | ||
typing_extensions~=4.2 | ||
|
||
-r requirements.txt |