python-s3transfer/hide_py_pckgmgmt.patch

41 lines
1.1 KiB
Diff

--- setup.py.orig
+++ setup.py
@@ -10,15 +10,15 @@ ROOT = os.path.dirname(__file__)
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
-requires = [
- 'botocore>=1.3.0,<2.0.0',
-]
+#requires = [
+# 'botocore>=1.3.0,<2.0.0',
+#]
-if sys.version_info[0] == 2:
+#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')
+# requires.append('futures>=2.2.0,<4.0.0')
def get_version():
@@ -35,11 +35,11 @@ setup(
author_email='kyknapp1@gmail.com',
url='https://github.com/boto/s3transfer',
packages=find_packages(exclude=['tests*']),
- install_requires=requires,
- extras_require={
- ':python_version=="2.6" or python_version=="2.7"': [
- 'futures>=2.2.0,<4.0.0']
- },
+# install_requires=requires,
+# extras_require={
+# ':python_version=="2.6" or python_version=="2.7"': [
+# 'futures>=2.2.0,<4.0.0']
+# },
license="Apache License 2.0",
classifiers=(
'Development Status :: 1 - Planning',