summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-01-21 10:38:35 -0500
committerGitHub <noreply@github.com>2021-01-21 09:38:35 -0600
commitd9a8ff455e7244711c60357fa2c9e742b63290ee (patch)
treed4dc04d85919dc1f474f101236df713f41d3c94b
parentafa536fc1d1081cb4f8fa4693197adf437bd13a1 (diff)
downloadspack-d9a8ff455e7244711c60357fa2c9e742b63290ee.tar.gz
spack-d9a8ff455e7244711c60357fa2c9e742b63290ee.tar.bz2
spack-d9a8ff455e7244711c60357fa2c9e742b63290ee.tar.xz
spack-d9a8ff455e7244711c60357fa2c9e742b63290ee.zip
[py-numba] added version 0.51.1 (#21182)
* [py-numba] added version 0.51.1 * [py-numba] updated llvmlite dependencies
-rw-r--r--var/spack/repos/builtin/packages/py-numba/package.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-numba/package.py b/var/spack/repos/builtin/packages/py-numba/package.py
index 64ceb6b970..83347b7983 100644
--- a/var/spack/repos/builtin/packages/py-numba/package.py
+++ b/var/spack/repos/builtin/packages/py-numba/package.py
@@ -12,6 +12,7 @@ class PyNumba(PythonPackage):
homepage = "https://numba.pydata.org/"
pypi = "numba/numba-0.35.0.tar.gz"
+ version('0.51.1', sha256='1e765b1a41535684bf3b0465c1d0a24dcbbff6af325270c8f4dad924c0940160')
version('0.50.1', sha256='89e81b51b880f9b18c82b7095beaccc6856fcf84ba29c4f0ced42e4e5748a3a7')
version('0.48.0', sha256='9d21bc77e67006b5723052840c88cc59248e079a907cc68f1a1a264e1eaba017')
version('0.40.1', sha256='52d046c13bcf0de79dbfb936874b7228f141b9b8e3447cc35855e9ad3e12aa33')
@@ -28,10 +29,11 @@ class PyNumba(PythonPackage):
# That's why it was chosen as an upper bound in the following depends_on
# calls. If newer versions maintain backwards compatibility, the calls
# can be updated accordingly.
- depends_on('py-llvmlite@0.33:0.34', type=('build', 'run'), when='@0.50.1')
- depends_on('py-llvmlite@0.31.0:0.32.0', type=('build', 'run'), when='@0.48.0')
- depends_on('py-llvmlite@0.25:', type=('build', 'run'), when='@0.40.1:')
- depends_on('py-llvmlite@0.20:0.25', type=('build', 'run'), when='@0.35.1')
+ depends_on('py-llvmlite@0.34.0:0.34.999', type=('build', 'run'), when='@0.51.1')
+ depends_on('py-llvmlite@0.33.0:0.33.999', type=('build', 'run'), when='@0.50.1')
+ depends_on('py-llvmlite@0.31.0:0.31.999', type=('build', 'run'), when='@0.48.0')
+ depends_on('py-llvmlite@0.25.0:', type=('build', 'run'), when='@0.40.1')
+ depends_on('py-llvmlite@0.20:0.25', type=('build', 'run'), when='@0.35.1')
depends_on('py-argparse', type=('build', 'run'), when='^python@:2.6')
depends_on('py-funcsigs', type=('build', 'run'), when='^python@:3.3.99')