diff options
author | iarspider <iarspider@gmail.com> | 2021-10-30 01:13:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 17:13:44 -0600 |
commit | 9448864c0e984b0acb440c55f7e6ed1c28d98938 (patch) | |
tree | b7c81054938aeb710fc143f9cfb69ac3ad931bf2 | |
parent | f2a36bdf14a8e5ad2ce3484c5d5c915d5a3dc9eb (diff) | |
download | spack-9448864c0e984b0acb440c55f7e6ed1c28d98938.tar.gz spack-9448864c0e984b0acb440c55f7e6ed1c28d98938.tar.bz2 spack-9448864c0e984b0acb440c55f7e6ed1c28d98938.tar.xz spack-9448864c0e984b0acb440c55f7e6ed1c28d98938.zip |
New versions: ipython 7.27.0 and 7.28.0 (#27066)
* New versions: ipython 7.27.0 and 7.28.0
* Changes from MR (1/2)
* Fix dep name (2/2)
-rw-r--r-- | var/spack/repos/builtin/packages/py-ipython/package.py | 9 |
1 files changed, 7 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 db78971301..76aabfcdb1 100644 --- a/var/spack/repos/builtin/packages/py-ipython/package.py +++ b/var/spack/repos/builtin/packages/py-ipython/package.py @@ -8,6 +8,7 @@ class PyIpython(PythonPackage): """IPython provides a rich toolkit to help you make the most out of using Python interactively.""" + homepage = "https://ipython.readthedocs.org/" pypi = "ipython/ipython-7.18.1.tar.gz" # 'IPython.kernel' is deprecated and fails to import, leave out of 'import_modules' @@ -22,6 +23,8 @@ class PyIpython(PythonPackage): 'IPython.external', 'IPython.external.decorators' ] + version('7.28.0', sha256='2097be5c814d1b974aea57673176a924c4c8c9583890e7a5f082f547b9975b11') + version('7.27.0', sha256='58b55ebfdfa260dad10d509702dc2857cb25ad82609506b070cf2d7b7df5af13') version('7.26.0', sha256='0cff04bb042800129348701f7bd68a430a844e8fb193979c08f6c99f28bb735e') version('7.21.0', sha256='04323f72d5b85b606330b6d7e2dc8d2683ad46c3905e955aa96ecc7a99388e70') version('7.18.1', sha256='a331e78086001931de9424940699691ad49dfb457cea31f5471eae7b78222d5e') @@ -52,9 +55,11 @@ class PyIpython(PythonPackage): depends_on('py-backcall', type=('build', 'run'), when='@7.3.0:') depends_on('py-matplotlib-inline', when='@7.23:', type=('build', 'run')) depends_on('py-pexpect', type=('build', 'run')) - depends_on('py-pexpect@4.3:', type=('build', 'run'), when='@7.18:') + depends_on('py-pexpect@4.4:', type=('build', 'run'), when='@7.18: platform=linux') + depends_on('py-pexpect@4.4:', type=('build', 'run'), when='@7.18: platform=darwin') + depends_on('py-pexpect@4.4:', type=('build', 'run'), when='@7.18: platform=cray') depends_on('py-appnope', type=('build', 'run'), when='platform=darwin') - depends_on('py-colorama', when='platform=win32', type=('build', 'run')) + depends_on('py-colorama', when='platform=windows', 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") depends_on('py-simplegeneric@0.8:', type=('build', 'run'), when='@:7.0.0') |