Skip to content

Commit

Permalink
Move minimum botocore version to 1.32.7 (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Nov 27, 2023
1 parent 1bd5298 commit 4c498e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.32.6,<2.0a.0
botocore>=1.32.7,<2.0a.0

[options.extras_require]
crt = botocore[crt]>=1.32.6,<2.0a0
crt = botocore[crt]>=1.32.7,<2.0a0

[flake8]
ignore = E203,E226,E501,W503,W504
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.32.6,<2.0a.0',
'botocore>=1.32.7,<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.32.6,<2.0a.0',
'crt': 'botocore[crt]>=1.32.7,<2.0a.0',
},
license="Apache License 2.0",
python_requires=">= 3.7",
Expand Down

0 comments on commit 4c498e7

Please sign in to comment.