-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This will let us avoid mistakes with some of our dependencies transparently updating and breaking our CI.
- Loading branch information
Showing
4 changed files
with
34 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
include *.py | ||
include *.toml | ||
include requirements-dev.in | ||
include *.txt | ||
include CHANGES | ||
include COPYING | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Our direct dependencies used in development/CI. | ||
# | ||
# We generate requirements-dev.txt from this file by running | ||
# | ||
# pip install -r requirements-dev.in && pip freeze > requirements-dev.txt | ||
# | ||
# and then modifying the file manually to restrict black and mypy to CPython | ||
|
||
pytest | ||
pytest-cov>=2.5.1 | ||
mypy;implementation_name=="cpython" | ||
black;implementation_name=="cpython" | ||
check-manifest | ||
typing_extensions>=3.7.4;python_version<"3.9" |
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,5 +1,18 @@ | ||
pytest | ||
pytest-cov>=2.5.1 | ||
mypy;implementation_name=="cpython" | ||
black;implementation_name=="cpython" | ||
check-manifest | ||
black==23.3.0;implementation_name=="cpython" | ||
build==0.10.0 | ||
check-manifest==0.49 | ||
click==8.1.3 | ||
coverage==7.2.7 | ||
exceptiongroup==1.1.1 | ||
iniconfig==2.0.0 | ||
mypy==1.4.1;implementation_name=="cpython" | ||
mypy-extensions==1.0.0 | ||
packaging==23.1 | ||
pathspec==0.11.1 | ||
platformdirs==3.8.0 | ||
pluggy==1.2.0 | ||
pyproject_hooks==1.0.0 | ||
pytest==7.4.0 | ||
pytest-cov==4.1.0 | ||
tomli==2.0.1 | ||
typing_extensions==4.7.0 |