summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-07-20 03:00:54 -0500
committerGitHub <noreply@github.com>2021-07-20 10:00:54 +0200
commit7ad7fa4da9f9310a89abfacfc61582f3c93bc1c8 (patch)
tree7d73007abdf0e41970387496801f13b78af6be57 /var
parent899e08a180f1bf61a883463242a6945c7d5fc3a8 (diff)
downloadspack-7ad7fa4da9f9310a89abfacfc61582f3c93bc1c8.tar.gz
spack-7ad7fa4da9f9310a89abfacfc61582f3c93bc1c8.tar.bz2
spack-7ad7fa4da9f9310a89abfacfc61582f3c93bc1c8.tar.xz
spack-7ad7fa4da9f9310a89abfacfc61582f3c93bc1c8.zip
py-pytorch-lightning: add v1.3.8 (#24944)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pytorch-lightning/package.py34
1 files changed, 19 insertions, 15 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 982362e966..7dd74c3b59 100644
--- a/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py
+++ b/var/spack/repos/builtin/packages/py-pytorch-lightning/package.py
@@ -12,20 +12,24 @@ class PyPytorchLightning(PythonPackage):
homepage = "https://github.com/PyTorchLightning/pytorch-lightning"
pypi = "pytorch-lightning/pytorch-lightning-1.2.10.tar.gz"
+ version('1.3.8', sha256='60b0a3e464d394864dae4c8d251afa7aa453644a19bb7672f5ee400343cdf7b0')
version('1.2.10', sha256='2d8365e30ded0c20e73ce6e5b6028478ae460b8fd33727df2275666df005a301')
- conflicts('py-pyyaml@5.4') # OmegaConf requirement >=5.1
- conflicts('py-tensorboard@2.5.0') # 2.5.0 GPU CI error: Couldn't build proto file into descriptor pool!
-
- # requirements from setup.py
- depends_on('py-setuptools', type='build')
- depends_on('python@3.6:', type=('build', 'run'))
- depends_on('py-torch@1.4:', type=('build', 'run'))
- depends_on('py-numpy@1.16.6:', type=('build', 'run'))
- depends_on('py-future@0.17.1:', type=('build', 'run'))
- depends_on('py-pyyaml@5.1:', type=('build', 'run'))
- depends_on('py-tqdm@4.41.0:', type=('build', 'run'))
- depends_on('py-fsspec@0.8.1:+http', type=('build', 'run'))
- depends_on('py-tensorboard@2.2.0:', type=('build', 'run'))
- depends_on('py-torchmetrics@0.2.0', type=('build', 'run'))
- depends_on('py-packaging', type=('build', 'run'))
+ depends_on('python@3.6:', type=('build', 'run'))
+ 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-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: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@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.2.0', when='@:1.2', 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'))