Skip to content

Commit

Permalink
relax botocore dependency specification (#1048)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller authored Nov 16, 2023
1 parent f67503a commit 281e68d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Changes
-------

2.8.0 (2023-10-24)
2.8.0 (2023-10-25)
^^^^^^^^^^^^^^^^^^
* add AioStubber that returns AioAWSResponse()
* remove confusing `aiobotocore.session.Session` symbol
* relax botocore dependency specification

2.7.0 (2023-10-17)
^^^^^^^^^^^^^^^^^^
Expand Down
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.16,<1.31.65',
'botocore>=1.31.16,<1.31.71',
'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.16,<1.29.65'],
'boto3': ['boto3>=1.28.16,<1.28.65'],
'awscli': ['awscli>=1.29.16,<1.29.71'],
'boto3': ['boto3>=1.28.16,<1.28.71'],
}


Expand Down

0 comments on commit 281e68d

Please sign in to comment.