diff --git a/.changes/next-release/feature-crt-5777.json b/.changes/next-release/feature-crt-5777.json new file mode 100644 index 00000000..4b0391a3 --- /dev/null +++ b/.changes/next-release/feature-crt-5777.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "``crt``", + "description": "S3transfer now supports a wider range of CRT functionality for uploads to improve throughput in the CLI/Boto3." +} diff --git a/setup.cfg b/setup.cfg index fd892717..d6691e86 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,10 +3,10 @@ universal = 0 [metadata] requires_dist = - botocore>=1.12.36,<2.0a.0 + botocore>=1.32.7,<2.0a.0 [options.extras_require] -crt = botocore[crt]>=1.20.29,<2.0a0 +crt = botocore[crt]>=1.32.7,<2.0a0 [flake8] ignore = E203,E226,E501,W503,W504 diff --git a/setup.py b/setup.py index c194bdbe..5ba9d1d1 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ requires = [ - 'botocore>=1.12.36,<2.0a.0', + 'botocore>=1.32.7,<2.0a.0', ] @@ -30,7 +30,7 @@ def get_version(): include_package_data=True, install_requires=requires, extras_require={ - 'crt': 'botocore[crt]>=1.20.29,<2.0a.0', + 'crt': 'botocore[crt]>=1.32.7,<2.0a.0', }, license="Apache License 2.0", python_requires=">= 3.7",