Hack to fix python dependency ranges (#3938)

* Hack to fix python dependency ranges

* Flake8
This commit is contained in:
Adam J. Stewart
2017-04-22 17:31:50 -05:00
committed by GitHub
parent fc8106afe3
commit 4e17ae911b
41 changed files with 46 additions and 48 deletions

View File

@@ -29,7 +29,7 @@
class Simulationio(CMakePackage):
"""SimulationIO: Efficient and convenient I/O for large PDE simulations"""
homepage = "https://github.com/eschnett/SimulationIO"
url= "https://github.com/eschnett/SimulationIO/archive/version/0.1.0.tar.gz"
url = "https://github.com/eschnett/SimulationIO/archive/version/0.1.0.tar.gz"
version('1.0.0', '5cbf1d0084eb436d861ffcdd297eaa08')
version('0.1.0', '00f7dabc08ed1ab77858785ce0809f50')
@@ -45,7 +45,7 @@ class Simulationio(CMakePackage):
depends_on('julia', when='+julia', type=('build', 'run'))
depends_on('py-h5py', when='+python', type=('build', 'run'))
depends_on('py-numpy', when='+python', type=('build', 'run'))
depends_on('python@2.7.0:2.999.999', when='+python', type=('build', 'run'))
depends_on('python@2.7:2.8', when='+python', type=('build', 'run'))
depends_on('swig', type='build')
extends('python')