diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2023-12-06 20:48:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 12:48:28 -0700 |
commit | 94ba152ef53591cd5092611ddb24d22db1c2e05e (patch) | |
tree | 908193ff03192b19df9d2d7f5cda66b23c2b5266 | |
parent | 5404a5bb82f3fdb2e4faf67b3c46fc5daa13413d (diff) | |
download | spack-94ba152ef53591cd5092611ddb24d22db1c2e05e.tar.gz spack-94ba152ef53591cd5092611ddb24d22db1c2e05e.tar.bz2 spack-94ba152ef53591cd5092611ddb24d22db1c2e05e.tar.xz spack-94ba152ef53591cd5092611ddb24d22db1c2e05e.zip |
py-torchmetrics: add v1.2.1 (#41456)
-rw-r--r-- | var/spack/repos/builtin/packages/py-torchmetrics/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-torchmetrics/package.py b/var/spack/repos/builtin/packages/py-torchmetrics/package.py index 7b5d067246..0b605f1d80 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.1", sha256="217387738f84939c39b534b20d4983e737cc448d27aaa5340e0327948d97ca3e") version("1.2.0", sha256="7eb28340bde45e13187a9ad54a4a7010a50417815d8181a5df6131f116ffe1b7") version("1.1.1", sha256="65ea34205c0506eecfd06b98f63f4d2a2c5c0e17367cf324e1747adc854c80a5") version("1.1.0", sha256="94b51aeb3d5ff55503fa47086bbc2af9e26efabb840e2d3c2381db9623dda5fd") @@ -45,6 +46,8 @@ class PyTorchmetrics(PythonPackage): depends_on("py-numpy@1.20.1:", when="@1:", type=("build", "run")) depends_on("py-numpy@1.17.2:", when="@0.4:", type=("build", "run")) depends_on("py-numpy", when="@0.3:", type=("build", "run")) + depends_on("py-packaging@17.2:", when="@1.2.1:", type=("build", "run")) + depends_on("py-packaging", when="@0.3:1.1.0", type=("build", "run")) 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")) @@ -52,5 +55,4 @@ class PyTorchmetrics(PythonPackage): 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")) |