summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2021-03-22 19:22:41 +0100
committerGitHub <noreply@github.com>2021-03-22 19:22:41 +0100
commit22425da038d685e94b6db6f91fca0df83efc594d (patch)
tree2abb9cd9e9ee4298cd3bef3479d71e98814136c1 /var
parentc2a9b7aa089b8514beba7b277d6a9fb670a352a0 (diff)
downloadspack-22425da038d685e94b6db6f91fca0df83efc594d.tar.gz
spack-22425da038d685e94b6db6f91fca0df83efc594d.tar.bz2
spack-22425da038d685e94b6db6f91fca0df83efc594d.tar.xz
spack-22425da038d685e94b6db6f91fca0df83efc594d.zip
IPython: add v7.21.0 and updated dependencies accordingly (#22448)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipython/package.py7
-rw-r--r--var/spack/repos/builtin/packages/py-jedi/package.py8
-rw-r--r--var/spack/repos/builtin/packages/py-parso/package.py1
-rw-r--r--var/spack/repos/builtin/packages/py-prompt-toolkit/package.py1
4 files changed, 15 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 93bf8f9c12..e889a1ff80 100644
--- a/var/spack/repos/builtin/packages/py-ipython/package.py
+++ b/var/spack/repos/builtin/packages/py-ipython/package.py
@@ -21,6 +21,7 @@ class PyIpython(PythonPackage):
'IPython.external', 'IPython.external.decorators'
]
+ version('7.21.0', sha256='04323f72d5b85b606330b6d7e2dc8d2683ad46c3905e955aa96ecc7a99388e70')
version('7.18.1', sha256='a331e78086001931de9424940699691ad49dfb457cea31f5471eae7b78222d5e')
version('7.5.0', sha256='e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26')
version('7.3.0', sha256='06de667a9e406924f97781bda22d5d76bfb39762b678762d86a466e63f65dc39')
@@ -36,13 +37,15 @@ class PyIpython(PythonPackage):
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-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:', 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@2.0.0:2.999,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:', type=('build', 'run'))
depends_on('py-pygments', type=('build', 'run'))
depends_on('py-backcall', type=('build', 'run'), when='@7.5.0:')
depends_on('py-pexpect', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-jedi/package.py b/var/spack/repos/builtin/packages/py-jedi/package.py
index 6b59132e94..031e5dea01 100644
--- a/var/spack/repos/builtin/packages/py-jedi/package.py
+++ b/var/spack/repos/builtin/packages/py-jedi/package.py
@@ -12,6 +12,8 @@ class PyJedi(PythonPackage):
homepage = "https://github.com/davidhalter/jedi"
pypi = "jedi/jedi-0.9.0.tar.gz"
+ version('0.18.0', sha256='92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707')
+ version('0.17.2', sha256='08d43addcbd656ed07e929631f8071eec567092bf16f2c19fc7bc272a97a77ef')
version('0.13.3', sha256='2bb0603e3506f708e792c7f4ad8fc2a7a9d9c2d292a358fbbd58da531695595b')
# unfortunately pypi.io only offers a .whl for 0.10.0
version('0.10.0', sha256='d6a7344df9c80562c3f62199278004ccc7c5889be9f1a6aa5abde117ec085123',
@@ -19,10 +21,16 @@ class PyJedi(PythonPackage):
version('0.9.0', sha256='3b4c19fba31bdead9ab7350fb9fa7c914c59b0a807dcdd5c00a05feb85491d31')
depends_on('py-setuptools', type=('build', 'run'))
+
depends_on('python@2.6:2.8,3.2:', type=('build', 'run'), when='@0.9.0')
depends_on('python@2.6:2.8,3.3:', type=('build', 'run'), when='@0.10.0')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'), when='@0.13.3')
+ depends_on('python@2.7:2.8,3.5:', type=('build', 'run'), when='@0.17.2')
+ depends_on('python@3.6:', type=('build', 'run'), when='@0.18.0')
+
depends_on('py-parso@0.1.0', type=('build', 'run'), when='@0.11.0')
depends_on('py-parso@0.1.1', type=('build', 'run'), when='@0.11.1')
depends_on('py-parso@0.2.0:', type=('build', 'run'), when='@0.12.0')
depends_on('py-parso@0.3.0:', type=('build', 'run'), when='@0.12.1:0.14.0')
+ depends_on('py-parso@0.7.0:0.7.99', type=('build', 'run'), when='@0.17.2')
+ depends_on('py-parso@0.8.0:0.8.99', type=('build', 'run'), when='@0.18.0')
diff --git a/var/spack/repos/builtin/packages/py-parso/package.py b/var/spack/repos/builtin/packages/py-parso/package.py
index 8ba9866223..07364b0bbb 100644
--- a/var/spack/repos/builtin/packages/py-parso/package.py
+++ b/var/spack/repos/builtin/packages/py-parso/package.py
@@ -15,6 +15,7 @@ class PyParso(PythonPackage):
pypi = "parso/parso-0.6.1.tar.gz"
version('0.8.1', sha256='8519430ad07087d4c997fda3a7918f7cfa27cb58972a8c89c2a0295a1c940e9e')
+ version('0.7.1', sha256='caba44724b994a8a5e086460bb212abc5a8bc46951bf4a9a1210745953622eb9')
version('0.6.1', sha256='56b2105a80e9c4df49de85e125feb6be69f49920e121406f15e7acde6c9dfc57')
version('0.4.0', sha256='2e9574cb12e7112a87253e14e2c380ce312060269d04bd018478a3c92ea9a376')
diff --git a/var/spack/repos/builtin/packages/py-prompt-toolkit/package.py b/var/spack/repos/builtin/packages/py-prompt-toolkit/package.py
index e8825c1a23..38eabe6f30 100644
--- a/var/spack/repos/builtin/packages/py-prompt-toolkit/package.py
+++ b/var/spack/repos/builtin/packages/py-prompt-toolkit/package.py
@@ -11,6 +11,7 @@ class PyPromptToolkit(PythonPackage):
pypi = "prompt_toolkit/prompt_toolkit-1.0.9.tar.gz"
+ version('3.0.17', sha256='9397a7162cf45449147ad6042fa37983a081b8a73363a5253dd4072666333137')
version('3.0.16', sha256='0fa02fa80363844a4ab4b8d6891f62dd0645ba672723130423ca4037b80c1974')
version('3.0.7', sha256='822f4605f28f7d2ba6b0b09a31e25e140871e96364d1d377667b547bb3bf4489')
version('2.0.10', sha256='f15af68f66e664eaa559d4ac8a928111eebd5feda0c11738b5998045224829db')