summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Payerle <payerle@umd.edu>2021-06-11 15:11:44 -0400
committerGitHub <noreply@github.com>2021-06-11 19:11:44 +0000
commit4a8785d3711130ee44a5bc3f1a87d2843620433c (patch)
tree4b8638517278cc2c0f14daa793b5a60b3ba570d2
parentadc4699c3adb343b7f4dcd92cc078ffdd4a76e5f (diff)
downloadspack-4a8785d3711130ee44a5bc3f1a87d2843620433c.tar.gz
spack-4a8785d3711130ee44a5bc3f1a87d2843620433c.tar.bz2
spack-4a8785d3711130ee44a5bc3f1a87d2843620433c.tar.xz
spack-4a8785d3711130ee44a5bc3f1a87d2843620433c.zip
[py-ippython]: Start py-backcall dependency to start at py-ipython@7.3.0: (#24279)
This should fix #24278 $INSTALLDIR/lib/python3.7/site-packages/IPython/core/events.py contains an import from backcall even in @7.3.0, so dependency on py-backcall needs to start earlier.
-rw-r--r--var/spack/repos/builtin/packages/py-ipython/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipython/package.py b/var/spack/repos/builtin/packages/py-ipython/package.py
index 7843ba3559..2997c1eb05 100644
--- a/var/spack/repos/builtin/packages/py-ipython/package.py
+++ b/var/spack/repos/builtin/packages/py-ipython/package.py
@@ -48,7 +48,7 @@ class PyIpython(PythonPackage):
depends_on('py-prompt-toolkit@2.0.0:2.0.999', when='@7.5.0', type=('build', 'run'))
depends_on('py-prompt-toolkit@3.0.2:3.0.999', when='@7.18:', type=('build', 'run'))
depends_on('py-pygments', type=('build', 'run'))
- depends_on('py-backcall', type=('build', 'run'), when='@7.5.0:')
+ depends_on('py-backcall', type=('build', 'run'), when='@7.3.0:')
depends_on('py-pexpect', type=('build', 'run'))
depends_on('py-pexpect@4.3:', type=('build', 'run'), when='@7.18:')
depends_on('py-appnope', type=('build', 'run'), when='platform=darwin')