python-botocore/hide_py_pckgmgmt.patch

51 lines
1.7 KiB
Diff

--- setup.py.orig
+++ setup.py
@@ -10,22 +10,22 @@ import botocore
from setuptools import setup, find_packages
-requires = ['six>=1.1.0',
- 'jmespath==0.2.1',
- 'python-dateutil>=2.1']
-
-
-if sys.version_info[:2] == (2, 6):
- # For python2.6 we have a few other dependencies.
- # First we need an ordered dictionary so we use the
- # 2.6 backport.
- requires.append('ordereddict==1.1')
- # Then we need simplejson. This is because we need
- # a json version that allows us to specify we want to
- # use an ordereddict instead of a normal dict for the
- # JSON objects. The 2.7 json module has this. For 2.6
- # we need simplejson.
- requires.append('simplejson==3.3.0')
+#requires = ['six>=1.1.0',
+# 'jmespath==0.2.1',
+# 'python-dateutil>=2.1']
+
+
+#if sys.version_info[:2] == (2, 6):
+# # For python2.6 we have a few other dependencies.
+# # First we need an ordered dictionary so we use the
+# # 2.6 backport.
+# requires.append('ordereddict==1.1')
+# # Then we need simplejson. This is because we need
+# # a json version that allows us to specify we want to
+# # use an ordereddict instead of a normal dict for the
+# # JSON objects. The 2.7 json module has this. For 2.6
+# # we need simplejson.
+# requires.append('simplejson==3.3.0')
setup(
@@ -42,7 +42,7 @@ setup(
'botocore.vendored.requests': ['*.pem']},
package_dir={'botocore': 'botocore'},
include_package_data=True,
- install_requires=requires,
+# install_requires=requires,
license=open("LICENSE.txt").read(),
classifiers=(
'Development Status :: 3 - Alpha',