Skip to content

Commit

Permalink
Explicitly specify develop.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg committed Sep 4, 2024
1 parent 25086b2 commit de9acc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spack/repo/packages/py-pyprecice/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ class PyPyprecice(PythonPackage):

depends_on("python@3:", type=("build", "link", "run"))
depends_on("py-setuptools@61:71", type="build")
depends_on("py-numpy@:1", type=("build", "link", "run"), when="@:3.1.1")
depends_on("py-numpy:", type=("build", "link", "run"), when="@develop") # explicitly specity develop
depends_on("py-numpy", type=("build", "link", "run"), when="@3.1.1:")
depends_on("py-numpy@:1", type=("build", "link", "run"), when="@:3.1.1")
depends_on("py-mpi4py", type=("build", "run"))
depends_on("py-cython@0.29:", type="build")
depends_on("py-packaging", type="build")
Expand Down

0 comments on commit de9acc7

Please sign in to comment.