summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2020-02-18 18:38:00 +0100
committerGitHub <noreply@github.com>2020-02-18 11:38:00 -0600
commit0ec908cd139c3a1fd3bd6b60aceeb83b62878291 (patch)
treeed63c49feddea2a0265a12b0256cf895e1fad4be /var
parentd08f53c5fb9235f20564fb072651d33e87f776ce (diff)
downloadspack-0ec908cd139c3a1fd3bd6b60aceeb83b62878291.tar.gz
spack-0ec908cd139c3a1fd3bd6b60aceeb83b62878291.tar.bz2
spack-0ec908cd139c3a1fd3bd6b60aceeb83b62878291.tar.xz
spack-0ec908cd139c3a1fd3bd6b60aceeb83b62878291.zip
Fix allowed python versions of py-tables (#14073)
* Fix allowed python versions of py-tables * Update package.py * Update package.py * I think I've finally got it * Update package.py * Update package.py * Update package.py
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-tables/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-tables/package.py b/var/spack/repos/builtin/packages/py-tables/package.py
index 8de84b4322..8af4809b49 100644
--- a/var/spack/repos/builtin/packages/py-tables/package.py
+++ b/var/spack/repos/builtin/packages/py-tables/package.py
@@ -29,8 +29,10 @@ class PyTables(PythonPackage):
variant('lzo', default=False, description='Support for lzo compression')
# requirements.txt
- depends_on('python@3.5:', when='@3.4:', type=('build', 'run'))
+ depends_on('python@3.5:', when='@3.6.1:', type=('build', 'run'))
+ depends_on('python@3.4:', when='@3.6.0:', type=('build', 'run'))
depends_on('python@2.6:', type=('build', 'run'))
+
depends_on('py-setuptools', type='build')
depends_on('py-cython@0.21:', type='build')
depends_on('py-numpy@1.9.3:', type=('build', 'run'))