summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-llvmlite/package.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-llvmlite/package.py b/var/spack/repos/builtin/packages/py-llvmlite/package.py
index 3e82c4ee38..b5248d496f 100644
--- a/var/spack/repos/builtin/packages/py-llvmlite/package.py
+++ b/var/spack/repos/builtin/packages/py-llvmlite/package.py
@@ -29,11 +29,14 @@ class PyLlvmlite(PythonPackage):
"""A lightweight LLVM python binding for writing JIT compilers"""
homepage = "http://llvmlite.readthedocs.io/en/latest/index.html"
- url = "https://pypi.io/packages/source/l/llvmlite/llvmlite-0.20.0.tar.gz"
+ url = "https://pypi.io/packages/source/l/llvmlite/llvmlite-0.23.0.tar.gz"
+ version('0.23.0', '6fc856576a11dbeef71de862f7c419de')
version('0.20.0', 'f2aa60d0981842b7930ba001b03679ab')
depends_on('py-setuptools', type='build')
- depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
+ depends_on('python@2.6:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
+ depends_on('llvm@6.0:', when='@0.23.0:')
depends_on('llvm@4.0:4.99', when='@0.17.0:0.20.99')
depends_on('binutils', type='build')