py-brian2: Fix missing open range for python dependency (#23469)
This commit is contained in:
parent
0fe3c5a07d
commit
be092e8625
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class PyBrian2(PythonPackage):
|
||||||
variant('docs', default=False, description='Build the documentation')
|
variant('docs', default=False, description='Build the documentation')
|
||||||
|
|
||||||
depends_on('python@2.7:', type=('build', 'run'))
|
depends_on('python@2.7:', type=('build', 'run'))
|
||||||
depends_on('python@3.6:', type=('build', 'run'), when='@2.4')
|
depends_on('python@3.6:', type=('build', 'run'), when='@2.4:')
|
||||||
depends_on('py-numpy@1.10:', type=('build', 'run'))
|
depends_on('py-numpy@1.10:', type=('build', 'run'))
|
||||||
depends_on('py-numpy@1.15:', type=('build', 'run'), when='@2.4:')
|
depends_on('py-numpy@1.15:', type=('build', 'run'), when='@2.4:')
|
||||||
depends_on('py-cython@0.29:', type=('build', 'run'))
|
depends_on('py-cython@0.29:', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue