summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Heinzeller <dom.heinzeller@icloud.com>2024-11-18 14:53:38 -0700
committerGitHub <noreply@github.com>2024-11-18 13:53:38 -0800
commit278326b4d942ac73e74511a214df82f9cf564b40 (patch)
tree488fdf05d198bb8f8c79b588bf8dc10e64324a2a
parent43c1a5e0ecbe25384ac0ddbfa0812499286ea636 (diff)
downloadspack-278326b4d942ac73e74511a214df82f9cf564b40.tar.gz
spack-278326b4d942ac73e74511a214df82f9cf564b40.tar.bz2
spack-278326b4d942ac73e74511a214df82f9cf564b40.tar.xz
spack-278326b4d942ac73e74511a214df82f9cf564b40.zip
Add py-phdf@0.11.4 and add conflict for py-pyhdf@0.10.4 with numpy@1.25: (#47656)
-rw-r--r--var/spack/repos/builtin/packages/py-pyhdf/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyhdf/package.py b/var/spack/repos/builtin/packages/py-pyhdf/package.py
index e1059e2097..c7631f64c8 100644
--- a/var/spack/repos/builtin/packages/py-pyhdf/package.py
+++ b/var/spack/repos/builtin/packages/py-pyhdf/package.py
@@ -20,6 +20,7 @@ class PyPyhdf(PythonPackage):
license("MIT")
version("master", branch="master")
+ version("0.11.4", sha256="f4d48ee6f297be76e07b1a31710ef898caa31757dfdf173e5a4b94988ea76164")
version("0.10.4", sha256="ea09b2bdafc9be0f7f43d72ff122d8efbde61881f4da3a659b33be5e29215f93")
depends_on("c", type="build") # generated
@@ -31,6 +32,8 @@ class PyPyhdf(PythonPackage):
depends_on("zlib-api", type=("build", "run"))
depends_on("hdf@4.2", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"))
+ # https://github.com/fhs/pyhdf/issues/63
+ depends_on("py-numpy@:1.24", when="@0.10.4", type=("build", "run"))
depends_on("jpeg", type=("build", "run"))
def setup_build_environment(self, env):