Skip to content

Commit

Permalink
Update minimum required botocore version to 1.36.0 (#326)
Browse files Browse the repository at this point in the history
* Update minimum required botocore version to 1.36.0

* add changelog entry
  • Loading branch information
jonathan343 authored Jan 16, 2025
1 parent 136d00a commit c4d0f87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/bugfix-Dependencies-16056.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "bugfix",
"category": "Dependencies",
"description": "Update the floor version of botocore to 1.36.0 to match imports."
}
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.33.2,<2.0a.0
botocore>=1.36.0,<2.0a.0

[options.extras_require]
crt = botocore[crt]>=1.33.2,<2.0a0
crt = botocore[crt]>=1.36.0,<2.0a0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


requires = [
'botocore>=1.33.2,<2.0a.0',
'botocore>=1.36.0,<2.0a.0',
]


Expand All @@ -30,7 +30,7 @@ def get_version():
include_package_data=True,
install_requires=requires,
extras_require={
'crt': 'botocore[crt]>=1.33.2,<2.0a.0',
'crt': 'botocore[crt]>=1.36.0,<2.0a.0',
},
license="Apache License 2.0",
python_requires=">= 3.8",
Expand Down

0 comments on commit c4d0f87

Please sign in to comment.