py-pytorch-lightning: add v1.3.8 (#24944)
This commit is contained in:
parent
899e08a180
commit
7ad7fa4da9
1 changed files with 19 additions and 15 deletions
|
@ -12,20 +12,24 @@ class PyPytorchLightning(PythonPackage):
|
||||||
homepage = "https://github.com/PyTorchLightning/pytorch-lightning"
|
homepage = "https://github.com/PyTorchLightning/pytorch-lightning"
|
||||||
pypi = "pytorch-lightning/pytorch-lightning-1.2.10.tar.gz"
|
pypi = "pytorch-lightning/pytorch-lightning-1.2.10.tar.gz"
|
||||||
|
|
||||||
|
version('1.3.8', sha256='60b0a3e464d394864dae4c8d251afa7aa453644a19bb7672f5ee400343cdf7b0')
|
||||||
version('1.2.10', sha256='2d8365e30ded0c20e73ce6e5b6028478ae460b8fd33727df2275666df005a301')
|
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('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-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-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-tqdm@4.41.0:', type=('build', 'run'))
|
||||||
depends_on('py-fsspec@0.8.1:+http', type=('build', 'run'))
|
depends_on('py-pyyaml@5.1:5.4.1', when='@1.3:', type=('build', 'run'))
|
||||||
depends_on('py-tensorboard@2.2.0:', type=('build', 'run'))
|
depends_on('py-pyyaml@5.1:5.3,5.5:', when='@:1.2', type=('build', 'run'))
|
||||||
depends_on('py-torchmetrics@0.2.0', 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('py-packaging', type=('build', 'run'))
|
||||||
|
depends_on('pil@:8.2.999,8.3.1:', when='@1.3:', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue