summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2023-09-25 15:28:32 +0200
committerGitHub <noreply@github.com>2023-09-25 07:28:32 -0600
commit9889a0cac608b412a0dbd32b96dcb4e60f76e6e4 (patch)
tree8511a590a4fab37818ffd3771cac28a7be176f1a /var
parent65ffd0dd637d6f994a6b8cd8e011e48d573056ca (diff)
downloadspack-9889a0cac608b412a0dbd32b96dcb4e60f76e6e4.tar.gz
spack-9889a0cac608b412a0dbd32b96dcb4e60f76e6e4.tar.bz2
spack-9889a0cac608b412a0dbd32b96dcb4e60f76e6e4.tar.xz
spack-9889a0cac608b412a0dbd32b96dcb4e60f76e6e4.zip
py-numcodecs: drop upperbound, add new version, avoid native compilation (#40183)
* py-numcodecs: drop upperbound, add new version, avoid native compilation * py-numcodecs: add entrypoints * Remove another upperbound on python Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-numcodecs/package.py25
-rw-r--r--var/spack/repos/builtin/packages/py-py-cpuinfo/package.py1
2 files changed, 22 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-numcodecs/package.py b/var/spack/repos/builtin/packages/py-numcodecs/package.py
index 46e233d9ed..badf48b465 100644
--- a/var/spack/repos/builtin/packages/py-numcodecs/package.py
+++ b/var/spack/repos/builtin/packages/py-numcodecs/package.py
@@ -21,22 +21,39 @@ class PyNumcodecs(PythonPackage):
import_modules = ["numcodecs"]
version("master", branch="master", submodules=True)
+ version("0.11.0", sha256="6c058b321de84a1729299b0eae4d652b2e48ea1ca7f9df0da65cb13470e635eb")
version("0.7.3", sha256="022b12ad83eb623ec53f154859d49f6ec43b15c36052fa864eaf2d9ee786dd85")
version("0.6.4", sha256="ef4843d5db4d074e607e9b85156835c10d006afc10e175bda62ff5412fca6e4d")
variant("msgpack", default=False, description="Codec to encode data as msgpacked bytes.")
- depends_on("python@3.6:3", when="@0.7:", type=("build", "link", "run"))
- depends_on("python@2.7:2.8,3.5:", when="@:0.6", type=("build", "link", "run"))
- depends_on("python@:3.10", when="@:0.10", type=("build", "link", "run"))
+ depends_on("python@3.8:", when="@0.11:", type=("build", "link", "run"))
+ depends_on("python@3.6:3", when="@0.7:0.10", type=("build", "link", "run"))
+ depends_on("py-setuptools@64:", when="@0.11:", type="build")
depends_on("py-setuptools@18.1:", type="build")
- depends_on("py-setuptools-scm@1.5.5:", type="build")
+ depends_on("py-setuptools-scm@6.2: +toml", when="@0.11:", type="build")
+ depends_on("py-setuptools-scm@1.5.5: +toml", type="build")
depends_on("py-cython", type="build")
depends_on("py-numpy@1.7:", type=("build", "run"))
+ depends_on("py-py-cpuinfo", when="@0.11:", type="build")
+ depends_on("py-entrypoints", when="@0.10.1:0.11", type=("build", "run"))
depends_on("py-msgpack", type=("build", "run"), when="+msgpack")
patch("apple-clang-12.patch", when="%apple-clang@12:")
+ # TODO: this package should really depend on blosc, zstd, lz4, zlib, but right now it vendors
+ # those libraries without any way to use the system versions.
+ # https://github.com/zarr-developers/numcodecs/issues/464
+
+ def setup_build_environment(self, env):
+ # This package likes to compile natively by checking cpu features and then setting flags
+ # -msse2 and -mavx2, which we want to avoid in Spack. This could go away if the package
+ # supports external libraries.
+ if "avx2" not in self.spec.target.features:
+ env.set("DISABLE_NUMCODECS_AVX2", "1")
+ if "sse2" not in self.spec.target.features:
+ env.set("DISABLE_NUMCODECS_SSE2", "1")
+
def flag_handler(self, name, flags):
if name == "cflags":
if self.spec.satisfies("%oneapi"):
diff --git a/var/spack/repos/builtin/packages/py-py-cpuinfo/package.py b/var/spack/repos/builtin/packages/py-py-cpuinfo/package.py
index 87d4e23e06..b98a15f828 100644
--- a/var/spack/repos/builtin/packages/py-py-cpuinfo/package.py
+++ b/var/spack/repos/builtin/packages/py-py-cpuinfo/package.py
@@ -12,6 +12,7 @@ class PyPyCpuinfo(PythonPackage):
homepage = "https://github.com/workhorsy/py-cpuinfo"
pypi = "py-cpuinfo/py-cpuinfo-0.2.3.tar.gz"
+ version("9.0.0", sha256="3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690")
version("8.0.0", sha256="5f269be0e08e33fd959de96b34cd4aeeeacac014dd8305f70eb28d06de2345c5")
version("6.0.0", sha256="7ffb31dea845b9f359b99bd5f7eea72dc70f852e0e34547d261a630f2b8c9c61")
version("0.2.3", sha256="f6a016fdbc4e7fadf2d519090fcb4fa9d0831bad4e85245d938e5c2fe7623ca6")