Robert Schweikert
04bfac3f5f
+ feature:aws ec2 describe-volumes: Add support for optional pagination. + feature:aws route53domains: Add support for auto-renew domains. + feature:aws cognito-identity: Add for Open-ID Connect. + feature:aws sts: Add support for Open-ID Connect + feature:aws iam: Add support for Open-ID Connect + bugfix:aws s3 sync: Fix issue when uploading with --exact-timestamps (issue 964) + bugfix:Retry: Fix issue where certain error codes were not being retried (botocore issue 361) + bugfix:aws emr ssh: Fix issue when using waiter interface to wait on the cluster state (issue 954) + feature:aws cloudsearch: Add support for advance Japanese language processing. + feature:aws rds: Add support for gp2 which provides faster access than disk-based storage. + bugfix:aws s3 mv: Delete multi-part objects when transferring objects across regions using --source-region (issue 938) + bugfix:aws emr ssh: Fix issue with waiter configuration not being found (issue 937) + feature:aws dynamodb: Update aws dynamodb command to support storing and retrieving documents with full support for document models. New data types are fully compatible with the JSON standard and allow you to nest document elements within one another. + bugfix:aws configure: Fix bug where aws configure was not properly writing out to the shared credentials file + bugfix:S3 Response Parsing: Fix regression for parsing S3 responses containing a status code of 200 with an error response body (botocore issue 342) + bugfix:Shorthand Error Message: Ensure the error message for shorthand OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=4
42 lines
1.3 KiB
Diff
42 lines
1.3 KiB
Diff
Index: aws-cli-1.2.13/setup.py
|
|
===================================================================
|
|
--- aws-cli-1.2.13.orig/setup.py
|
|
+++ aws-cli-1.2.13/setup.py
|
|
@@ -6,17 +6,17 @@ from setuptools import setup, find_packa
|
|
import awscli
|
|
|
|
|
|
-requires = ['botocore>=0.67.0,<0.68.0',
|
|
- 'bcdoc>=0.12.0,<0.13.0',
|
|
- 'six>=1.1.0',
|
|
- 'colorama==0.2.5',
|
|
- 'docutils>=0.10',
|
|
- 'rsa==3.1.2']
|
|
+#requires = ['botocore>=0.67.0,<0.68.0',
|
|
+# 'bcdoc>=0.12.0,<0.13.0',
|
|
+# 'six>=1.1.0',
|
|
+# 'colorama==0.2.5',
|
|
+# 'docutils>=0.10',
|
|
+# 'rsa==3.1.2']
|
|
|
|
-if sys.version_info[:2] == (2, 6):
|
|
- # For python2.6 we have to require argparse since it
|
|
- # was not in stdlib until 2.7.
|
|
- requires.append('argparse>=1.1')
|
|
+#if sys.version_info[:2] == (2, 6):
|
|
+# # For python2.6 we have to require argparse since it
|
|
+# # was not in stdlib until 2.7.
|
|
+# requires.append('argparse>=1.1')
|
|
|
|
|
|
setup_options = dict(
|
|
@@ -33,7 +33,7 @@ setup_options = dict(
|
|
package_dir={'awscli': 'awscli'},
|
|
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
|
'examples/*/*/*.rst']},
|
|
- install_requires=requires,
|
|
+# install_requires=requires,
|
|
license="Apache License 2.0",
|
|
classifiers=(
|
|
'Development Status :: 5 - Production/Stable',
|