diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2023-09-24 09:25:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 16:25:34 +0200 |
commit | c6a3dd03ab0daa168f9f9fceee581290186ca9a3 (patch) | |
tree | c73b8b8628782f6ef1ac60921cb5388a976e36ce /var | |
parent | ebdd5e28f25d054e4b110fa66798ee610d37de4f (diff) | |
download | spack-c6a3dd03ab0daa168f9f9fceee581290186ca9a3.tar.gz spack-c6a3dd03ab0daa168f9f9fceee581290186ca9a3.tar.bz2 spack-c6a3dd03ab0daa168f9f9fceee581290186ca9a3.tar.xz spack-c6a3dd03ab0daa168f9f9fceee581290186ca9a3.zip |
py-torchmetrics: add v1.2.0 (#40164)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-torchmetrics/package.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-torchmetrics/package.py b/var/spack/repos/builtin/packages/py-torchmetrics/package.py index c5e3d1788e..7b5d067246 100644 --- a/var/spack/repos/builtin/packages/py-torchmetrics/package.py +++ b/var/spack/repos/builtin/packages/py-torchmetrics/package.py @@ -14,6 +14,7 @@ class PyTorchmetrics(PythonPackage): maintainers("adamjstewart") + version("1.2.0", sha256="7eb28340bde45e13187a9ad54a4a7010a50417815d8181a5df6131f116ffe1b7") version("1.1.1", sha256="65ea34205c0506eecfd06b98f63f4d2a2c5c0e17367cf324e1747adc854c80a5") version("1.1.0", sha256="94b51aeb3d5ff55503fa47086bbc2af9e26efabb840e2d3c2381db9623dda5fd") version("1.0.3", sha256="1c20ea2f0db434334e88da6c015ddf936d43379bfb403e9dc2a7272b0eab453c") @@ -36,10 +37,8 @@ class PyTorchmetrics(PythonPackage): version("0.3.1", sha256="78f4057db53f7c219fdf9ec9eed151adad18dd43488a44e5c780806d218e3f1d") version("0.2.0", sha256="481a28759acd2d77cc088acba6bc7dc4a356c7cb767da2e1495e91e612e2d548") - # pyproject.toml - depends_on("python@3.8:", when="@1:", type=("build", "run")) - # setup.py + depends_on("python@3.8:", when="@1:", type=("build", "run")) depends_on("py-setuptools", type="build") # requirements.txt (upper bound is removed during processing) @@ -49,9 +48,9 @@ class PyTorchmetrics(PythonPackage): depends_on("py-torch@1.8.1:", when="@0.11:", type=("build", "run")) depends_on("py-torch@1.3.1:", type=("build", "run")) depends_on("py-typing-extensions", when="@0.9: ^python@:3.8", type=("build", "run")) - depends_on("py-packaging", when="@0.3:", type=("build", "run")) depends_on("py-lightning-utilities@0.8:", when="@1.1:", type=("build", "run")) depends_on("py-lightning-utilities@0.7:", when="@1:", type=("build", "run")) # Historical dependencies + depends_on("py-packaging", when="@0.3:1.1", type=("build", "run")) depends_on("py-pydeprecate@0.3", when="@0.7:0.8", type=("build", "run")) |