py-ipython: add v7.26.0 (#25521)

This commit is contained in:
Adam J. Stewart 2021-08-21 05:19:38 -05:00 committed by GitHub
parent cf7e40f03c
commit 9b66138054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,7 @@ class PyIpython(PythonPackage):
'IPython.external', 'IPython.external.decorators'
]
version('7.26.0', sha256='0cff04bb042800129348701f7bd68a430a844e8fb193979c08f6c99f28bb735e')
version('7.21.0', sha256='04323f72d5b85b606330b6d7e2dc8d2683ad46c3905e955aa96ecc7a99388e70')
version('7.18.1', sha256='a331e78086001931de9424940699691ad49dfb457cea31f5471eae7b78222d5e')
version('7.5.0', sha256='e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26')
@ -37,21 +38,23 @@ class PyIpython(PythonPackage):
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-setuptools@18.5:', type='run', when='@4.1:')
depends_on('py-jedi@0.10:', type=('build', 'run'), when='@7.5.0:')
depends_on('py-jedi@:0.17', type=('build', 'run'), when='@:7.18') # from release notes
depends_on('py-jedi@0.16:', type=('build', 'run'), when='@7.18:')
depends_on('py-jedi@0.10:', type=('build', 'run'), when='@7.5:7.17,7.19')
depends_on('py-jedi@0.16:', type=('build', 'run'), when='@7.18,7.20:')
depends_on('py-decorator', type=('build', 'run'))
depends_on('py-pickleshare', type=('build', 'run'))
depends_on('py-traitlets@4.2:', 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:7.5.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-prompt-toolkit@3.0.2:3.0.999', when='@7.18:', type=('build', 'run'))
depends_on('py-prompt-toolkit@3.0.2:3.0.999', when='@7.18:7.25', type=('build', 'run'))
depends_on('py-prompt-toolkit@2.0.0:2.999,3.0.2:3.0.999', when='@7.26:', type=('build', 'run'))
depends_on('py-pygments', type=('build', 'run'))
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-appnope', type=('build', 'run'), when='platform=darwin')
depends_on('py-colorama', when='platform=win32', 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')