summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEnrico Usai <10634438+enrico-usai@users.noreply.github.com>2020-11-19 02:27:04 +0100
committerGitHub <noreply@github.com>2020-11-18 19:27:04 -0600
commitbc5c475909925230c9a16bfe56f731a198bb8055 (patch)
tree97ced89a93f77eada8e2a504b3c415bd642eb959 /var
parent10f784338ba1a26dcdd8e415c518ae14006ed0fa (diff)
downloadspack-bc5c475909925230c9a16bfe56f731a198bb8055.tar.gz
spack-bc5c475909925230c9a16bfe56f731a198bb8055.tar.bz2
spack-bc5c475909925230c9a16bfe56f731a198bb8055.tar.xz
spack-bc5c475909925230c9a16bfe56f731a198bb8055.zip
aws-parallelcluster: 2.10.0 release (#19976)
Updated boto3 dependency and removed useless comments.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/aws-parallelcluster/package.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/aws-parallelcluster/package.py b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
index 999c6aae25..e970fee0e5 100644
--- a/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
+++ b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
@@ -12,7 +12,7 @@ class AwsParallelcluster(PythonPackage):
tool to deploy and manage HPC clusters in the AWS cloud."""
homepage = "https://github.com/aws/aws-parallelcluster"
- url = "https://pypi.io/packages/source/a/aws-parallelcluster/aws-parallelcluster-2.9.1.tar.gz"
+ url = "https://pypi.io/packages/source/a/aws-parallelcluster/aws-parallelcluster-2.10.0.tar.gz"
maintainers = [
'sean-smith', 'demartinofra', 'enrico-usai', 'lukeseawalker', 'rexcsn',
@@ -23,6 +23,7 @@ class AwsParallelcluster(PythonPackage):
'pcluster.config', 'pcluster.networking'
]
+ version('2.10.0', sha256='a7a27871b4f54cb913b0c1233e675131e9b2099549af0840d32c36b7e91b104b')
version('2.9.1', sha256='12dc22286cd447a16931f1f8619bdd47d4543fd0de7905d52b6c6f83ff9db8a3')
version('2.9.0', sha256='e98a8426bc46aca0860d9a2be89bbc4a90aab3ed2f60ca6c385b595fbbe79a78')
version('2.8.1', sha256='c183dc3f053bc2445db724e561cea7f633dd5e7d467a7b3f9b2f2f703f7d5d49')
@@ -33,29 +34,33 @@ class AwsParallelcluster(PythonPackage):
version('2.5.1', sha256='4fd6e14583f8cf81f9e4aa1d6188e3708d3d14e6ae252de0a94caaf58be76303')
version('2.5.0', sha256='3b0209342ea0d9d8cc95505456103ad87c2d4e35771aa838765918194efd0ad3')
- # common deps
depends_on('python@2.7:', type=('build', 'run'))
+
depends_on('py-future@0.16.0:0.18.2', 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'))
- # 2.9.x changes
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'))
+
depends_on('py-pyyaml@5.2', when='@2.6:2.8 ^python@3.0:3.4', type=('build', 'run'))
depends_on('py-pyyaml@5.3.1:', when='@2.9: ^python@:2,3.5:', type=('build', 'run'))
+
depends_on('py-jinja2@2.10.1', when='@2.9: ^python@3.0:3.4', type=('build', 'run'))
depends_on('py-jinja2@2.11.0:', when='@2.9: ^python@:2,3.5:', type=('build', 'run'))
- # 2.8.x changes
- depends_on('py-boto3@1.14.3:', when='@2.8:', type=('build', 'run'))
+ depends_on('py-boto3@1.16.14:', when='@2.10:', type=('build', 'run'))
+ depends_on('py-boto3@1.14.3:', when='@2.8:2.9', type=('build', 'run'))
depends_on('py-boto3@1.10.15:', when='@:2.7', type=('build', 'run'))
- # 2.6.x changes
depends_on('py-setuptools', when='@2.6:', type=('build', 'run'))
+
depends_on('py-enum34@1.1.6:', when='@2.6: ^python@:3.3', type=('build', 'run'))
depends_on('py-enum34@1.1.6:', when='@:2.5', type=('build', 'run'))
+
depends_on('py-pyyaml@5.1.2', when='@2.6: ^python@:2,3.5:', type=('build', 'run'))
depends_on('py-pyyaml@5.1.2:', when='@:2.5', type=('build', 'run'))