[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.
This commit is contained in:
Tom Payerle 2021-06-11 15:11:44 -04:00 committed by GitHub
parent adc4699c3a
commit 4a8785d371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')