python-s3transfer/hide_py_pckgmgmt.patch
Robert Schweikert 3e06ab7ad5 Accepting request 768704 from home:glaubitz:branches:devel:languages:python:aws
- Update to version 0.3.2
  * bugfix:s3: Fixes boto/botocore`#1916 <https://github.com/boto/botocore/issues/1916>`__
- from version 0.3.1
  * enhancement:TransferManager: Expose client and config properties
  * enhancement:Tags: Add support for Tagging and TaggingDirective
- from version 0.3.0
  * feature:Python: Dropped support for Python 2.6 and 3.3.
- Refresh patches for new version
  + hide_py_pckgmgmt.patch

OBS-URL: https://build.opensuse.org/request/show/768704
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-s3transfer?expand=0&rev=12
2020-01-30 19:00:56 +00:00

44 lines
1.3 KiB
Diff

diff -Nru s3transfer-0.3.2.orig/setup.py s3transfer-0.3.2/setup.py
--- s3transfer-0.3.2.orig/setup.py 2020-01-23 20:10:38.000000000 +0100
+++ s3transfer-0.3.2/setup.py 2020-01-27 17:03:58.370465807 +0100
@@ -10,15 +10,15 @@
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
-requires = [
- 'botocore>=1.12.36,<2.0.0',
-]
+# requires = [
+# 'botocore>=1.12.36,<2.0.0',
+# ]
-if sys.version_info[0] == 2:
- # concurrent.futures is only in python3, so for
- # python2 we need to install the backport.
- requires.append('futures>=2.2.0,<4.0.0')
+# if sys.version_info[0] == 2:
+# # concurrent.futures is only in python3, so for
+# # python2 we need to install the backport.
+# requires.append('futures>=2.2.0,<4.0.0')
def get_version():
@@ -36,11 +36,11 @@
url='https://github.com/boto/s3transfer',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
- install_requires=requires,
- extras_require={
- ':python_version=="2.7"': [
- 'futures>=2.2.0,<4.0.0']
- },
+ # install_requires=requires,
+ # extras_require={
+ # ':python_version=="2.7"': [
+ # 'futures>=2.2.0,<4.0.0']
+ # },
license="Apache License 2.0",
classifiers=(
'Development Status :: 3 - Alpha',