diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-22 21:36:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-22 21:36:14 -0600 |
commit | 0950442ea0d2679d44fee874dc844d55c2708231 (patch) | |
tree | 54ad939fe6edadef0c825cca4462596704c0bb7d | |
parent | 013ff54731208e41eb1e0e14b2f9ca75d791fcba (diff) | |
download | spack-0950442ea0d2679d44fee874dc844d55c2708231.tar.gz spack-0950442ea0d2679d44fee874dc844d55c2708231.tar.bz2 spack-0950442ea0d2679d44fee874dc844d55c2708231.tar.xz spack-0950442ea0d2679d44fee874dc844d55c2708231.zip |
Add awscli 1.16.308 (#14270)
-rw-r--r-- | var/spack/repos/builtin/packages/awscli/package.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/awscli/package.py b/var/spack/repos/builtin/packages/awscli/package.py index 3bc5c977f6..8befa8ddc0 100644 --- a/var/spack/repos/builtin/packages/awscli/package.py +++ b/var/spack/repos/builtin/packages/awscli/package.py @@ -12,21 +12,21 @@ class Awscli(PythonPackage): Amazon Web Services""" homepage = "https://pypi.org/project/awscli/" - url = "https://pypi.io/packages/source/a/awscli/awscli-1.16.179.tar.gz" + url = "https://pypi.io/packages/source/a/awscli/awscli-1.16.308.tar.gz" + version('1.16.308', sha256='3632fb1db2538128509a7b5e89f2a2c4ea3426bec139944247bddc4d79bf7603') version('1.16.179', sha256='6a87114d1325358d000abe22b2103baae7b91f053ff245b9fde33cb0affb5e4f') depends_on('py-setuptools', type='build') - depends_on('py-docutils@0.10:', type=('build', 'run')) - depends_on('py-colorama@0.2.5:0.3.9', type=('build', 'run')) + depends_on('py-botocore@1.13.44', when='@1.16.308', type=('build', 'run')) + depends_on('py-botocore@1.12.169', when='@1.16.179', type=('build', 'run')) + depends_on('py-docutils@0.10:0.15', type=('build', 'run')) depends_on('py-rsa@3.1.2:3.5.0', type=('build', 'run')) - depends_on('py-pyyaml@3.10:3.13', type=('build', 'run'), - when='^python@2.6:2.6.99') - depends_on('py-pyyaml@3.10:5.1', type=('build', 'run'), - when='^python@2.7:') - depends_on('py-argparse@1.1:', when='^python@:2.6', - type=('build', 'run')) depends_on('py-s3transfer@0.2.0:0.2.999', type=('build', 'run')) - depends_on('py-botocore@1.12.169', type=('build', 'run')) + depends_on('py-argparse@1.1:', when='^python@:2.6', type=('build', 'run')) + depends_on('py-pyyaml@3.10:3.13', when='^python@:2.6,3.0:3.3', type=('build', 'run')) + depends_on('py-pyyaml@3.10:5.2', when='^python@3.4:', type=('build', 'run')) + depends_on('py-colorama@0.2.5:0.3.9', when='^python@:2.6,3.0:3.3', type=('build', 'run')) + depends_on('py-colorama@0.2.5:0.4.1', when='^python@3.4:', type=('build', 'run')) depends_on('py-nose', type='test') depends_on('py-mock@1.3.0:', type='test') |