diff options
author | arcadia-devtools <[email protected]> | 2022-06-17 09:54:55 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-06-17 09:54:55 +0300 |
commit | 216b853064f62638fa6625c77e1112dda0415c06 (patch) | |
tree | 4ca33bd823ffee6e81ca44c500d6175122d535bc /contrib/python | |
parent | 4d873d36519410b14e2669da71063b958e1faabf (diff) |
intermediate changes
ref:2b762dae26bc7be0e9e81bdbe0eeeb259ed522c5
Diffstat (limited to 'contrib/python')
-rw-r--r-- | contrib/python/boto3/py3/.dist-info/METADATA | 4 | ||||
-rw-r--r-- | contrib/python/boto3/py3/boto3/__init__.py | 2 | ||||
-rw-r--r-- | contrib/python/boto3/py3/boto3/s3/transfer.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/contrib/python/boto3/py3/.dist-info/METADATA b/contrib/python/boto3/py3/.dist-info/METADATA index 2551a23c29b..31c2919ccb3 100644 --- a/contrib/python/boto3/py3/.dist-info/METADATA +++ b/contrib/python/boto3/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: boto3 -Version: 1.24.1 +Version: 1.24.2 Summary: The AWS SDK for Python Home-page: https://github.com/boto/boto3 Author: Amazon Web Services @@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.10 Requires-Python: >= 3.7 License-File: LICENSE License-File: NOTICE -Requires-Dist: botocore (<1.28.0,>=1.27.1) +Requires-Dist: botocore (<1.28.0,>=1.27.2) Requires-Dist: jmespath (<2.0.0,>=0.7.1) Requires-Dist: s3transfer (<0.7.0,>=0.6.0) Provides-Extra: crt diff --git a/contrib/python/boto3/py3/boto3/__init__.py b/contrib/python/boto3/py3/boto3/__init__.py index f52adf165e3..4f129b8f51d 100644 --- a/contrib/python/boto3/py3/boto3/__init__.py +++ b/contrib/python/boto3/py3/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.compat import _warn_deprecated_python from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.1' +__version__ = '1.24.2' # The default Boto3 session; autoloaded when needed. diff --git a/contrib/python/boto3/py3/boto3/s3/transfer.py b/contrib/python/boto3/py3/boto3/s3/transfer.py index cd7210e726f..3d572981e0d 100644 --- a/contrib/python/boto3/py3/boto3/s3/transfer.py +++ b/contrib/python/boto3/py3/boto3/s3/transfer.py @@ -210,7 +210,7 @@ class TransferConfig(S3TransferConfig): :param use_threads: If True, threads will be used when performing S3 transfers. If False, no threads will be used in - performing transfers: all logic will be ran in the main thread. + performing transfers; all logic will be run in the main thread. :param max_bandwidth: The maximum bandwidth that will be consumed in uploading and downloading file content. The value is an integer |