Skip to content

Commit

Permalink
Support up-to-date botocore (#1100)
Browse files Browse the repository at this point in the history
* relax botocore dependency specification

---------

Co-authored-by: Alexander Mohr <thehesiod@users.noreply.github.com>
  • Loading branch information
jakob-keller and thehesiod committed Apr 11, 2024
1 parent a904bd1 commit ea86e2b
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.12.3 (2024-04-11)
^^^^^^^^^^^^^^^^^^^
* relax botocore dependency specification

2.12.2 (2024-04-01)
^^^^^^^^^^^^^^^^^^^
* expose configuration of ``http_session_cls`` in ``AioConfig``
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.12.2'
__version__ = '2.12.3'
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.34.41,<1.34.52',
'botocore>=1.34.41,<1.34.70',
'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.32.41,<1.32.52'],
'boto3': ['boto3>=1.34.41,<1.34.52'],
'awscli': ['awscli>=1.32.41,<1.32.70'],
'boto3': ['boto3>=1.34.41,<1.34.70'],
}


Expand Down

0 comments on commit ea86e2b

Please sign in to comment.