249f3b8d5b
- Update to version 1.0.0.a2 (alpha 2) + Update models to the latest version + Rename event to provide-client-params + Add client-method-called event to botocore + Update README with date of first alpha release OBS-URL: https://build.opensuse.org/request/show/308964 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-botocore?expand=0&rev=7
47 lines
1.6 KiB
Diff
47 lines
1.6 KiB
Diff
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -10,21 +10,21 @@ import botocore
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
-requires = ['jmespath==0.7.1',
|
|
- 'python-dateutil>=2.1,<3.0.0']
|
|
+#requires = ['jmespath==0.7.1',
|
|
+# 'python-dateutil>=2.1,<3.0.0']
|
|
|
|
|
|
-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')
|
|
+#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(
|
|
@@ -41,7 +41,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',
|