Skip to content

Commit

Permalink
relax botocore dependency specification
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Sep 10, 2023
1 parent 1d341d7 commit a0496c2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.7.1 (2023-09-10)
^^^^^^^^^^^^^^^^^^
* relax botocore dependency specification

2.7.0 (2023-08-17)
^^^^^^^^^^^^^^^^^^
* add support for Python 3.12
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.7.0'
__version__ = '2.7.1'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
# NOTE: When updating botocore make sure to update awscli/boto3 versions below
install_requires = [
# pegged to also match items in `extras_require`
'botocore>=1.31.17,<1.31.18',
'botocore>=1.31.17,<1.31.45',
'aiohttp>=3.7.4.post0,<4.0.0',
'wrapt>=1.10.10, <2.0.0',
'aioitertools>=0.5.1,<1.0.0',
]

extras_require = {
'awscli': ['awscli>=1.29.17,<1.29.18'],
'boto3': ['boto3>=1.28.17,<1.28.18'],
'awscli': ['awscli>=1.29.17,<1.29.45'],
'boto3': ['boto3>=1.28.17,<1.28.45'],
}


Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_release_versions():
# get aioboto reqs
with (_root_path / 'setup.py').open() as f:
content = f.read()
aioboto_reqs = _get_boto_module_versions(content, True)
aioboto_reqs = _get_boto_module_versions(content, False)

# get awscli reqs
awscli_resp = requests.get(
Expand Down

0 comments on commit a0496c2

Please sign in to comment.