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
This commit is contained in:
iarspider
2020-02-18 18:38:00 +01:00
committed by GitHub
parent d08f53c5fb
commit 0ec908cd13

View File

@@ -29,8 +29,10 @@ class PyTables(PythonPackage):
variant('lzo', default=False, description='Support for lzo compression') variant('lzo', default=False, description='Support for lzo compression')
# requirements.txt # 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('python@2.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('py-cython@0.21:', type='build') depends_on('py-cython@0.21:', type='build')
depends_on('py-numpy@1.9.3:', type=('build', 'run')) depends_on('py-numpy@1.9.3:', type=('build', 'run'))