summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-11-30 00:17:34 +0100
committerGitHub <noreply@github.com>2023-11-30 00:17:34 +0100
commitf4f67adf499f8af2d2904cb9e424b9bda3ce40d0 (patch)
tree45cd6ef31d8de1eb813008dc5b41fc24e4846f2a
parent220898b4de380cfa21090c1a2cc1616d25c1f304 (diff)
downloadspack-f4f67adf499f8af2d2904cb9e424b9bda3ce40d0.tar.gz
spack-f4f67adf499f8af2d2904cb9e424b9bda3ce40d0.tar.bz2
spack-f4f67adf499f8af2d2904cb9e424b9bda3ce40d0.tar.xz
spack-f4f67adf499f8af2d2904cb9e424b9bda3ce40d0.zip
py-numba: add v0.58.1 (#41262)
* py-numba: add v0.58.1 * Passing tests
-rw-r--r--var/spack/repos/builtin/packages/py-numba/package.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-numba/package.py b/var/spack/repos/builtin/packages/py-numba/package.py
index c266f53a74..965f865874 100644
--- a/var/spack/repos/builtin/packages/py-numba/package.py
+++ b/var/spack/repos/builtin/packages/py-numba/package.py
@@ -13,6 +13,9 @@ class PyNumba(PythonPackage):
pypi = "numba/numba-0.35.0.tar.gz"
git = "https://github.com/numba/numba.git"
+ skip_modules = ["numba.core.rvsdg_frontend"]
+
+ version("0.58.1", sha256="487ded0633efccd9ca3a46364b40006dbdaca0f95e99b8b83e778d1195ebcbaa")
version("0.57.0", sha256="2af6d81067a5bdc13960c6d2519dbabbf4d5d597cf75d640c5aeaefd48c6420a")
version("0.56.4", sha256="32d9fef412c81483d7efe0ceb6cf4d3310fde8b624a9cecca00f790573ac96ee")
version("0.56.0", sha256="87a647dd4b8fce389869ff71f117732de9a519fe07663d9a02d75724eb8e244d")
@@ -24,14 +27,16 @@ class PyNumba(PythonPackage):
version("0.48.0", sha256="9d21bc77e67006b5723052840c88cc59248e079a907cc68f1a1a264e1eaba017")
version("0.40.1", sha256="52d046c13bcf0de79dbfb936874b7228f141b9b8e3447cc35855e9ad3e12aa33")
- depends_on("python@3.8:3.11", when="@0.57", type=("build", "run"))
+ depends_on("python@3.8:3.11", when="@0.57:", type=("build", "run"))
depends_on("python@3.7:3.10", when="@0.55:0.56", type=("build", "run"))
depends_on("python@3.7:3.9", when="@0.54", type=("build", "run"))
depends_on("python@3.6:3.9", when="@0.53", type=("build", "run"))
depends_on("python@3.6:3.8", when="@0.52", type=("build", "run"))
depends_on("python@3.6:3.8", when="@0.48:0.51", type=("build", "run"))
depends_on("python@3.3:3.7", when="@0.40.1:0.47", type=("build", "run"))
- depends_on("py-numpy@1.21:1.24", when="@0.57:", type=("build", "run"))
+ depends_on("py-numpy@1.22:1.26", when="@0.58.1:", type=("build", "run"))
+ depends_on("py-numpy@1.21:1.25", when="@0.58.0", type=("build", "run"))
+ depends_on("py-numpy@1.21:1.24", when="@0.57", type=("build", "run"))
depends_on("py-numpy@1.18:1.23", when="@0.56.1:0.56.4", type=("build", "run"))
depends_on("py-numpy@1.18:1.22", when="@0.55.2:0.56.0", type=("build", "run"))
depends_on("py-numpy@1.18:1.21", when="@0.55.0:0.55.1", type=("build", "run"))
@@ -39,6 +44,7 @@ class PyNumba(PythonPackage):
depends_on("py-numpy@1.15:1.20", when="@0.48:0.53", type=("build", "run"))
depends_on("py-numpy@1.10:1.20", when="@:0.47", type=("build", "run"))
depends_on("py-setuptools", type=("build", "run"))
+ depends_on("py-llvmlite@0.41", when="@0.58", type=("build", "run"))
depends_on("py-llvmlite@0.40", when="@0.57", type=("build", "run"))
depends_on("py-llvmlite@0.39", when="@0.56", type=("build", "run"))
depends_on("py-llvmlite@0.38", when="@0.55", type=("build", "run"))