summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEnrico Usai <10634438+enrico-usai@users.noreply.github.com>2021-07-09 15:13:57 +0200
committerGitHub <noreply@github.com>2021-07-09 08:13:57 -0500
commitf830585994aa094e69770f17187730809890e01a (patch)
treeba8c91d70c7005118c9456c570b81db5d48c781c /var
parent2e80b60a04e413e22f476c81affa6e82e4526c95 (diff)
downloadspack-f830585994aa094e69770f17187730809890e01a.tar.gz
spack-f830585994aa094e69770f17187730809890e01a.tar.bz2
spack-f830585994aa094e69770f17187730809890e01a.tar.xz
spack-f830585994aa094e69770f17187730809890e01a.zip
aws-parallelcluster: add v2.11.0 (#24648)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/aws-parallelcluster/package.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/aws-parallelcluster/package.py b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
index 30655c66f8..9f3c4b860e 100644
--- a/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
+++ b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
@@ -13,12 +13,13 @@ class AwsParallelcluster(PythonPackage):
tool to deploy and manage HPC clusters in the AWS cloud."""
homepage = "https://github.com/aws/aws-parallelcluster"
- pypi = "aws-parallelcluster/aws-parallelcluster-2.10.4.tar.gz"
+ pypi = "aws-parallelcluster/aws-parallelcluster-2.11.0.tar.gz"
maintainers = [
'demartinofra', 'enrico-usai', 'lukeseawalker', 'rexcsn', 'tilne'
]
+ version('2.11.0', sha256='ec2f54f752a355649ca065a41fa4ac19697f570a136e10e0a6548f5abad3ea8a')
version('2.10.4', sha256='487dbf3e79f3e9b6750b1075cef4eb24956f7b310e5bd8de662b98d87491736c')
version('2.10.3', sha256='02016358932375c1abb566c6b7f1c891fa617fc4a4ec4ce9969f87758d4039c7')
version('2.10.2', sha256='95853535b82e8087c6635a946556ed886e68d3a77d67a375830c57d80f2bbd6e')
@@ -34,14 +35,16 @@ class AwsParallelcluster(PythonPackage):
version('2.5.1', sha256='4fd6e14583f8cf81f9e4aa1d6188e3708d3d14e6ae252de0a94caaf58be76303')
version('2.5.0', sha256='3b0209342ea0d9d8cc95505456103ad87c2d4e35771aa838765918194efd0ad3')
- depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('python@3.6:', when='@2.11:', type=('build', 'run'))
+ depends_on('python@2.7:2.8,3.4:', when='@:2.10', type=('build', 'run'))
- depends_on('py-future@0.16.0:0.18.2', type=('build', 'run'))
+ depends_on('py-future@0.16.0:0.18.2', when='@:2.10', type=('build', 'run'))
depends_on('py-ipaddress@1.0.22:', type=('build', 'run'))
depends_on('py-configparser@3.5.0:3.8.1', when='^python@:2', type=('build', 'run'))
+ depends_on('py-tabulate@0.8.2:0.8.9', when='@2.11:', type=('build', 'run'))
depends_on('py-tabulate@0.8.2:0.8.3', when='@:2.8', type=('build', 'run'))
depends_on('py-tabulate@0.8.5', when='@2.9: ^python@3.0:3.4', type=('build', 'run'))
depends_on('py-tabulate@0.8.2:0.8.7', when='@2.9: ^python@:2,3.5:', type=('build', 'run'))