forked from pool/python-botocore
- Version update to 1.11.1 * api-change:``glue``: Update glue client to latest version - from version 1.11.0 * api-change:``events``: Update events client to latest version * api-change:``cognito-idp``: Update cognito-idp client to latest version * feature:urllib3: The vendored version of requests and urllib3 are no longer being used and botocore now has a direct dependency on newer versions of upstream urllib3. - from version 1.10.84 * api-change:``iot``: Update iot client to latest version * api-change:``rekognition``: Update rekognition client to latest version * api-change:``lex-models``: Update lex-models client to latest version * api-change:``iotanalytics``: Update iotanalytics client to latest version * api-change:``medialive``: Update medialive client to latest version - from version 1.10.83 * api-change:``snowball``: Update snowball client to latest version - from version 1.10.82 * api-change:``ec2``: Update ec2 client to latest version * api-change:``dlm``: Update dlm client to latest version * api-change:``rds``: Update rds client to latest version * api-change:``elasticbeanstalk``: Update elasticbeanstalk client to latest version - from version 1.10.81 * api-change:``mediaconvert``: Update mediaconvert client to latest version * api-change:``dynamodb``: Update dynamodb client to latest version - from version 1.10.80 * api-change:``dax``: Update dax client to latest version * api-change:``secretsmanager``: Update secretsmanager client to latest version * api-change:``sagemaker``: Update sagemaker client to latest version - from version 1.10.79 * api-change:``discovery``: Update discovery client to latest version * api-change:``ssm``: Update ssm client to latest version * api-change:``ec2``: Update ec2 client to latest version OBS-URL: https://build.opensuse.org/request/show/635342 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=16
70 lines
2.4 KiB
Diff
70 lines
2.4 KiB
Diff
diff -Nru botocore-1.11.1.orig/setup.py botocore-1.11.1/setup.py
|
|
--- botocore-1.11.1.orig/setup.py 2018-08-25 03:51:41.000000000 +0200
|
|
+++ botocore-1.11.1/setup.py 2018-08-25 17:29:08.588407739 +0200
|
|
@@ -23,25 +23,25 @@
|
|
raise RuntimeError("Unable to find version string.")
|
|
|
|
|
|
-requires = ['jmespath>=0.7.1,<1.0.0',
|
|
- 'docutils>=0.10',
|
|
- 'urllib3>=1.20,<1.24']
|
|
-
|
|
-
|
|
-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.append('python-dateutil>=2.1,<2.7.0')
|
|
-else:
|
|
- requires.append('python-dateutil>=2.1,<3.0.0')
|
|
+# requires = ['jmespath>=0.7.1,<1.0.0',
|
|
+# 'docutils>=0.10',
|
|
+# 'urllib3>=1.20,<1.24']
|
|
+
|
|
+
|
|
+# 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.append('python-dateutil>=2.1,<2.7.0')
|
|
+# else:
|
|
+# requires.append('python-dateutil>=2.1,<3.0.0')
|
|
|
|
|
|
setup(
|
|
@@ -56,13 +56,13 @@
|
|
package_data={'botocore': ['cacert.pem', 'data/*.json', 'data/*/*.json'],
|
|
'botocore.vendored.requests': ['*.pem']},
|
|
include_package_data=True,
|
|
- install_requires=requires,
|
|
- extras_require={
|
|
- ':python_version=="2.6"': [
|
|
- 'ordereddict==1.1',
|
|
- 'simplejson==3.3.0',
|
|
- ]
|
|
- },
|
|
+ # install_requires=requires,
|
|
+ # extras_require={
|
|
+ # ':python_version=="2.6"': [
|
|
+ # 'ordereddict==1.1',
|
|
+ # 'simplejson==3.3.0',
|
|
+ # ]
|
|
+ # },
|
|
license="Apache License 2.0",
|
|
classifiers=(
|
|
'Development Status :: 5 - Production/Stable',
|