summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-08-09 06:23:38 -0500
committerGitHub <noreply@github.com>2021-08-09 13:23:38 +0200
commitdf0d86d795c4efed385ab0332890ea2d461ebb0b (patch)
treebc25ae830ed21f89270dcb6a3779098595acd87c /var
parent0f514a390acda767f8f6b5696f36a0db85f3b4d0 (diff)
downloadspack-df0d86d795c4efed385ab0332890ea2d461ebb0b.tar.gz
spack-df0d86d795c4efed385ab0332890ea2d461ebb0b.tar.bz2
spack-df0d86d795c4efed385ab0332890ea2d461ebb0b.tar.xz
spack-df0d86d795c4efed385ab0332890ea2d461ebb0b.zip
py-pytorch-lightning: add v1.4.1 (#25232)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pytorch-lightning/package.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py b/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py
index 7dd74c3b59..4c2578b6ab 100644
--- a/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py
+++ b/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py
@@ -12,6 +12,8 @@ class PyPytorchLightning(PythonPackage):
homepage = "https://github.com/PyTorchLightning/pytorch-lightning"
pypi = "pytorch-lightning/pytorch-lightning-1.2.10.tar.gz"
+ version('1.4.1', sha256='1d1128aeb5d0e523d2204c4d9399d65c4e5f41ff0370e96d694a823af5e8e6f3')
+ version('1.4.0', sha256='6529cf064f9dc323c94f3ce84b56ee1a05db1b0ab17db77c4d15aa36e34da81f')
version('1.3.8', sha256='60b0a3e464d394864dae4c8d251afa7aa453644a19bb7672f5ee400343cdf7b0')
version('1.2.10', sha256='2d8365e30ded0c20e73ce6e5b6028478ae460b8fd33727df2275666df005a301')
@@ -19,17 +21,22 @@ class PyPytorchLightning(PythonPackage):
depends_on('py-setuptools', type='build')
depends_on('py-numpy@1.17.2:', when='@1.3:', type=('build', 'run'))
depends_on('py-numpy@1.16.6:', when='@:1.2', type=('build', 'run'))
- depends_on('py-torch@1.4:', type=('build', 'run'))
+ depends_on('py-torch@1.6:', when='@1.4:', type=('build', 'run'))
+ depends_on('py-torch@1.4:', when='@:1.3', type=('build', 'run'))
depends_on('py-future@0.17.1:', type=('build', 'run'))
depends_on('py-tqdm@4.41.0:', type=('build', 'run'))
- depends_on('py-pyyaml@5.1:5.4.1', when='@1.3:', type=('build', 'run'))
+ depends_on('py-pyyaml@5.1:', when='@1.4:', type=('build', 'run'))
+ depends_on('py-pyyaml@5.1:5.4.1', when='@1.3', type=('build', 'run'))
depends_on('py-pyyaml@5.1:5.3,5.5:', when='@:1.2', type=('build', 'run'))
- depends_on('py-fsspec@2021.05.0:2021.05.999,2021.06.1:', when='@1.3:', type=('build', 'run'))
+ depends_on('py-fsspec@2021.05.0:2021.05.999,2021.06.1:+http', when='@1.3:', type=('build', 'run'))
depends_on('py-fsspec@0.8.1:+http', when='@:1.2', type=('build', 'run'))
depends_on('py-tensorboard@2.2.0:2.4.999,2.5.1:', type=('build', 'run'))
- depends_on('py-torchmetrics@0.2.0:', when='@1.3:', type=('build', 'run'))
+ depends_on('py-torchmetrics@0.4.0:', when='@1.4:', type=('build', 'run'))
+ depends_on('py-torchmetrics@0.2.0:', when='@1.3', type=('build', 'run'))
depends_on('py-torchmetrics@0.2.0', when='@:1.2', type=('build', 'run'))
- depends_on('py-pydeprecate@0.3.0', when='@1.3:', type=('build', 'run'))
+ depends_on('py-pydeprecate@0.3.1', when='@1.4:', type=('build', 'run'))
+ depends_on('py-pydeprecate@0.3.0', when='@1.3', type=('build', 'run'))
depends_on('py-packaging@17.0:', when='@1.3:', type=('build', 'run'))
depends_on('py-packaging', type=('build', 'run'))
- depends_on('pil@:8.2.999,8.3.1:', when='@1.3:', type=('build', 'run'))
+ depends_on('py-typing-extensions', when='@1.4:', type=('build', 'run'))
+ depends_on('pil@:8.2.999,8.3.1:', when='@1.3', type=('build', 'run'))