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:
parent
d08f53c5fb
commit
0ec908cd13
1 changed files with 3 additions and 1 deletions
|
@ -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'))
|
||||
|
|
Loading…
Reference in a new issue