Skip to content

Commit

Permalink
Merge pull request #1246 from jakob-keller/fix-dependencies
Browse files Browse the repository at this point in the history
Fix dependencies
  • Loading branch information
jakob-keller authored Jan 6, 2025
2 parents 22d3e7c + 466b62a commit 095edc8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
-------

2.17.0 (2025-01-06)
^^^^^^^^^^^^^^^^^^^
* add missing dependencies `python-dateutil`, `jmespath`, `multidict`, and `urllib3`

2.16.1 (2024-12-26)
^^^^^^^^^^^^^^^^^^^
* relax botocore dependency specification
Expand Down
2 changes: 1 addition & 1 deletion aiobotocore/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.16.1'
__version__ = '2.17.0'
17 changes: 11 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,23 @@ classifiers = [
dynamic = ["version", "readme"]

dependencies = [
"botocore >=1.35.74, <1.35.89", # NOTE: When updating, always keep `project.optional-dependencies` aligned
"aiohttp >=3.9.2, <4.0.0",
"wrapt >=1.10.10, <2.0.0",
"aioitertools >=0.5.1, <1.0.0",
"aiohttp >= 3.9.2, < 4.0.0",
"aioitertools >= 0.5.1, < 1.0.0",
"botocore >= 1.35.74, < 1.35.89", # NOTE: When updating, always keep `project.optional-dependencies` aligned
"python-dateutil >= 2.1, < 3.0.0",
"jmespath >= 0.7.1, < 2.0.0",
"multidict >= 6.0.0, < 7.0.0",
"urllib3 >= 1.25.4, < 1.27; python_version < '3.10'",
"urllib3 >= 1.25.4, != 2.2.0, < 3; python_version >= '3.10'",
"wrapt >= 1.10.10, < 2.0.0",
]

[project.optional-dependencies]
awscli = [
"awscli >=1.36.15, <1.36.30",
"awscli >= 1.36.15, < 1.36.30",
]
boto3 = [
"boto3 >=1.35.74, <1.35.89",
"boto3 >= 1.35.74, < 1.35.89",
]

[project.urls]
Expand Down
9 changes: 7 additions & 2 deletions requirements-dev.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@ pytest-xdist==3.5.0

### aiobotocore dev dependencies

dill~=0.3.3 # Requirement for tests/test_patches.py
dill~=0.3.3 # Used in test_patches.py
docker~=7.1
docutils~=0.16 # Used in test_version.py
moto[server,s3,sqs,awslambda,dynamodb,cloudformation,sns,batch,ec2,rds]~=4.2.9
packaging~=24.1 # Used in test_version.py
pip~=24.3.1 # Used in test_version.py
pre-commit~=3.5.0
pytest-asyncio~=0.23.8
requests~=2.32.3 # Used in test_version.py
time-machine~=2.15.0
tomli; python_version < "3.11" # Requirement for tests/test_version.py
tomli; python_version < "3.11" # Used in test_version.py
werkzeug~=3.0.6 # Used in moto_server.py

0 comments on commit 095edc8

Please sign in to comment.