-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1185 from jakob-keller/dev-requirements
Streamline dev dependency management
- Loading branch information
Showing
5 changed files
with
30 additions
and
28 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
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,19 +1,25 @@ | ||
codecov~=2.1.13 | ||
### relevant botocore dev dependencies (from https://github.com/boto/botocore/blob/develop/requirements-dev.txt) | ||
|
||
# wheel==0.43.0 | ||
# behave==1.2.5 | ||
# jsonschema==4.21.1 | ||
coverage==7.2.7 | ||
docker~=7.1 | ||
moto[server,s3,sqs,awslambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.2.9 | ||
pre-commit~=3.5.0 | ||
# setuptools==71.1.0;python_version>="3.12" | ||
# packaging==24.1;python_version>="3.12" # Requirement for setuptools>=71 | ||
|
||
# Pytest specific deps | ||
pytest==8.1.1 | ||
pytest-cov==5.0.0 | ||
pytest-asyncio~=0.23.8 | ||
pytest-xdist==3.5.0 | ||
# atomicwrites>=1.0 # Windows requirement | ||
# colorama>0.3.0 # Windows requirement | ||
|
||
# this is needed for test_patches | ||
dill~=0.3.3 | ||
|
||
# this is needed for test_version | ||
tomli; python_version < "3.11" | ||
### aiobotocore dev dependencies | ||
|
||
aiohttp${AIOHTTP_VERSION} | ||
|
||
-e .[awscli,boto3] | ||
dill~=0.3.3 # Requirement for tests/test_patches.py | ||
docker~=7.1 | ||
moto[server,s3,sqs,awslambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.2.9 | ||
pre-commit~=3.5.0 | ||
pytest-asyncio~=0.23.8 | ||
tomli; python_version < "3.11" # Requirement for tests/test_version.py |