diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-04-08 07:13:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 14:13:17 +0200 |
commit | e8ae9a403ca7db7738d36bf41bf99977b9c88a84 (patch) | |
tree | ef6a31a8f7af993408b0a1177376373dd5f881ca /var | |
parent | 1a8ef161c8ef77b4fa2c1ed65f366cd8adbe1d7b (diff) | |
download | spack-e8ae9a403ca7db7738d36bf41bf99977b9c88a84.tar.gz spack-e8ae9a403ca7db7738d36bf41bf99977b9c88a84.tar.bz2 spack-e8ae9a403ca7db7738d36bf41bf99977b9c88a84.tar.xz spack-e8ae9a403ca7db7738d36bf41bf99977b9c88a84.zip |
acts: depends_on py-onnxruntime when +onnx for @23.3: (#43529)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/acts/package.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/acts/package.py b/var/spack/repos/builtin/packages/acts/package.py index cc0f54363e..342f6ed8f2 100644 --- a/var/spack/repos/builtin/packages/acts/package.py +++ b/var/spack/repos/builtin/packages/acts/package.py @@ -331,10 +331,7 @@ class Acts(CMakePackage, CudaPackage): depends_on("python@3.8:", when="+python @19.11:19") depends_on("python@3.8:", when="+python @21:") depends_on("py-onnxruntime@:1.12", when="+onnx @:23.2") - # FIXME py-onnxruntime@1.12: required but not yet available - # Ref: https://github.com/spack/spack/pull/37064 - # depends_on("py-onnxruntime@1.12:", when="+onnx @23.3:") - conflicts("+onnx", when="@23.3:", msg="py-onnxruntime@1.12: required but not yet available") + depends_on("py-onnxruntime@1.12:", when="+onnx @23.3:") depends_on("py-pybind11 @2.6.2:", when="+python @18:") depends_on("py-pytest", when="+python +unit_tests") |