Skip to content

Commit

Permalink
Support up-to-date botocore (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller authored Jan 26, 2024
1 parent 6d33946 commit d36c373
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 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.11.1 (2024-01-25)
^^^^^^^^^^^^^^^^^^^
* bump botocore dependency specification

2.11.0 (2024-01-19)
^^^^^^^^^^^^^^^^^^^
* send project-specific `User-Agent` HTTP header #853
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.11.0'
__version__ = '2.11.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.33.2,<1.34.23',
'botocore>=1.33.2,<1.34.28',
'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.31.2,<1.32.23'],
'boto3': ['boto3>=1.33.2,<1.34.23'],
'awscli': ['awscli>=1.31.2,<1.32.28'],
'boto3': ['boto3>=1.33.2,<1.34.28'],
}


Expand Down

0 comments on commit d36c373

Please sign in to comment.