diff --git a/setup.cfg b/setup.cfg index 3e3c0567..ba6eedc6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,10 +3,10 @@ universal = 0 [metadata] requires_dist = - botocore>=1.33.2,<2.0a.0 + botocore>=1.33.3,<2.0a.0 [options.extras_require] -crt = botocore[crt]>=1.33.2,<2.0a0 +crt = botocore[crt]>=1.33.3,<2.0a0 [flake8] ignore = E203,E226,E501,W503,W504 diff --git a/setup.py b/setup.py index 8657f5c8..21a06704 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ requires = [ - 'botocore>=1.33.2,<2.0a.0', + 'botocore>=1.33.3,<2.0a.0', ] @@ -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.33.3,<2.0a.0', }, license="Apache License 2.0", python_requires=">= 3.7",