diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-06-03 22:09:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 22:09:40 -0500 |
commit | 5a7b555314c0e56377ee7292785b685624b30d90 (patch) | |
tree | 2f4db36c9beb36f36e5de279e9df488681a7772f | |
parent | dd19d6f863d01b3beb38104293b2927623b2753d (diff) | |
download | spack-5a7b555314c0e56377ee7292785b685624b30d90.tar.gz spack-5a7b555314c0e56377ee7292785b685624b30d90.tar.bz2 spack-5a7b555314c0e56377ee7292785b685624b30d90.tar.xz spack-5a7b555314c0e56377ee7292785b685624b30d90.zip |
IPython: fix setuptools dependency (#16915)
* IPython: fix setuptools dependency
* Remove extra colon
-rw-r--r-- | var/spack/repos/builtin/packages/py-ipython/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipython/package.py b/var/spack/repos/builtin/packages/py-ipython/package.py index 8faa8ab330..5d1710b00e 100644 --- a/var/spack/repos/builtin/packages/py-ipython/package.py +++ b/var/spack/repos/builtin/packages/py-ipython/package.py @@ -19,8 +19,10 @@ class PyIpython(PythonPackage): version('3.1.0', sha256='532092d3f06f82b1d8d1e5c37097eae19fcf025f8f6a4b670dd49c3c338d5624') version('2.3.1', sha256='3e98466aa2fe54540bcba9aa6e01a39f40110d67668c297340c4b9514b7cc49c') - depends_on('python@2.7:2.8,3.3:', type=('build', 'run'), when='@:6') + depends_on('python@3.6:', type=('build', 'run'), when='@7.10:') depends_on('python@3.5:', type=('build', 'run'), when='@7:') + depends_on('python@3.3:', type=('build', 'run'), when='@6:') + depends_on('python@2.7:2.8,3.3:', type=('build', 'run')) depends_on('py-backports-shutil-get-terminal-size', type=('build', 'run'), when="^python@:3.2") depends_on('py-pathlib2', type=('build', 'run'), when="^python@:3.3") @@ -37,4 +39,4 @@ class PyIpython(PythonPackage): depends_on('py-appnope', type=('build', 'run'), when='platform=darwin') depends_on('py-jedi@0.10:', type=('build', 'run'), when='@7.5.0:') depends_on('py-backcall', type=('build', 'run'), when='@7.5.0:') - depends_on('py-setuptools@18.5:', type=('build', 'run'), when='@7.5.0:') + depends_on('py-setuptools@18.5:', type='run', when='@4.1:') |