Skip to content

Commit

Permalink
Explicitly ask for numpy 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg committed Sep 4, 2024
1 parent 8b6ef65 commit 6f53b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spack/repo/packages/py-pyprecice/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class PyPyprecice(PythonPackage):

depends_on("python@3:", type=("build", "link", "run"))
depends_on("py-setuptools@61:71", type="build")
depends_on("py-numpy", type=("build", "link", "run"), when="@develop") # explicitly specity develop
depends_on("py-numpy@2:", 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"))
Expand Down

0 comments on commit 6f53b6d

Please sign in to comment.