summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2020-06-02 22:09:35 +0200
committerGitHub <noreply@github.com>2020-06-02 15:09:35 -0500
commit9a17d48455bbb38ae8ad51979eeba006c89d4104 (patch)
tree03c9919c323c024386b435c9c91ebc284a1de2d0 /var
parentb60ab6eefdfe584105ae97caf15a0e72c4ab2457 (diff)
downloadspack-9a17d48455bbb38ae8ad51979eeba006c89d4104.tar.gz
spack-9a17d48455bbb38ae8ad51979eeba006c89d4104.tar.bz2
spack-9a17d48455bbb38ae8ad51979eeba006c89d4104.tar.xz
spack-9a17d48455bbb38ae8ad51979eeba006c89d4104.zip
Add ipython 7.5.0 (#16801)
* Add ipython 7.5.0 * Update dependencies * Update package.py
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipython/package.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipython/package.py b/var/spack/repos/builtin/packages/py-ipython/package.py
index 5bfad819e7..8faa8ab330 100644
--- a/var/spack/repos/builtin/packages/py-ipython/package.py
+++ b/var/spack/repos/builtin/packages/py-ipython/package.py
@@ -12,6 +12,7 @@ class PyIpython(PythonPackage):
homepage = "https://pypi.python.org/pypi/ipython"
url = "https://pypi.io/packages/source/i/ipython/ipython-2.3.1.tar.gz"
+ version('7.5.0', sha256='e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26')
version('7.3.0', sha256='06de667a9e406924f97781bda22d5d76bfb39762b678762d86a466e63f65dc39')
version('5.8.0', sha256='4bac649857611baaaf76bc82c173aa542f7486446c335fe1a6c05d0d491c8906')
version('5.1.0', sha256='7ef4694e1345913182126b219aaa4a0047e191af414256da6772cf249571b961')
@@ -25,11 +26,15 @@ class PyIpython(PythonPackage):
depends_on('py-pathlib2', type=('build', 'run'), when="^python@:3.3")
depends_on('py-pygments', type=('build', 'run'))
depends_on('py-pickleshare', type=('build', 'run'))
- depends_on('py-simplegeneric@0.8:', type=('build', 'run'))
- depends_on('py-prompt-toolkit@1.0.4:1.999', when='@:7.0.0', type=('build', 'run'))
- depends_on('py-prompt-toolkit@2.0.0:2.999', when='@7.0.0:', type=('build', 'run'))
+ depends_on('py-simplegeneric@0.8:', type=('build', 'run'), when='@:7.0.0')
+ depends_on('py-prompt-toolkit@1.0.4:1.999', when='@:7.0.0', type=('build', 'run'))
+ depends_on('py-prompt-toolkit@2.0.0:2.999', when='@7.0.0:', type=('build', 'run'))
+ depends_on('py-prompt-toolkit@2.0.0:2.0.999', when='@7.5.0:', type=('build', 'run'))
depends_on('py-traitlets@4.2:', type=('build', 'run'))
depends_on('py-decorator', type=('build', 'run'))
depends_on('py-pexpect', type=('build', 'run'))
depends_on('py-backcall', type=('build', 'run'), when="^python@3.3:")
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:')