summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorgenric <genrich.ivaska@epfl.ch>2021-10-29 21:10:36 +0200
committerGitHub <noreply@github.com>2021-10-29 14:10:36 -0500
commit749640faf9c643c0464153439549f7295dfbbd63 (patch)
tree7a5eabeaed3ada533de4d7fdf130aeb3335d2949 /var
parent494ba677049382e133340aefe4fe6ffb13d79d64 (diff)
downloadspack-749640faf9c643c0464153439549f7295dfbbd63.tar.gz
spack-749640faf9c643c0464153439549f7295dfbbd63.tar.bz2
spack-749640faf9c643c0464153439549f7295dfbbd63.tar.xz
spack-749640faf9c643c0464153439549f7295dfbbd63.zip
py-ipyparallel: add 7.1.0 (#26984)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipyparallel/package.py36
1 files changed, 23 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipyparallel/package.py b/var/spack/repos/builtin/packages/py-ipyparallel/package.py
index 9644a11939..56ae7e7d44 100644
--- a/var/spack/repos/builtin/packages/py-ipyparallel/package.py
+++ b/var/spack/repos/builtin/packages/py-ipyparallel/package.py
@@ -10,20 +10,30 @@ class PyIpyparallel(PythonPackage):
"""IPython's architecture for parallel and distributed computing."""
homepage = "https://github.com/ipython/ipyparallel"
- url = "https://github.com/ipython/ipyparallel/archive/6.3.0.tar.gz"
+ pypi = "ipyparallel/ipyparallel-7.1.0.tar.gz"
- version('6.3.0', sha256='b18f6e10ffbcf6f97cac9ce6edc32365302e8496a5252407b91c61b654882147')
- version('6.2.5', sha256='f6de54a29f7beb97872aa49dfa606dea5f3ed20d2433e3a7200ac2ea9b2a4388')
- version('6.2.4', sha256='84aa117647b358133643aad1082ea8a56ab8a17693cc3bc2b150746a37e7332e')
+ version('7.1.0', sha256='ea756df0d2485bac19cccb0dbf4cafbc855c922b9b5905b4906e6cfac8b3c648')
+ version('6.3.0', sha256='0a97b276c62db633e9e97a816282bdd166f9df74e28204f0c8fa54b71944cfdc')
+ version('6.2.5', sha256='33416179665f9c2f567011ab1a618232bc32c0845c0a3a5c388f6c71048bc053')
+ version('6.2.4', sha256='76c7b028962b0ba762e4e45b450ee3a4353e7221526a8af812e817d7ef6ac065')
depends_on('python@3.5:', type=('build', 'run'))
- depends_on('py-setuptools', type='build')
- depends_on('py-ipython-genutils', type=('build', 'run'))
- depends_on('py-decorator', type=('build', 'run'))
- depends_on('py-pyzmq@13:', type=('build', 'run'))
- depends_on('py-traitlets@4.3:', type=('build', 'run'))
- depends_on('py-ipython@4:', type=('build', 'run'))
- depends_on('py-jupyter-client', type=('build', 'run'))
- depends_on('py-ipykernel@4.4:', type=('build', 'run'))
+ depends_on('python@3.6:', type=('build', 'run'), when='@7.1.0:')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-jupyter-packaging', type='build')
+
+ depends_on('py-ipython-genutils', type=('build', 'run'), when='@:6.3.0')
+ depends_on('py-decorator', type=('build', 'run'))
+ depends_on('py-pyzmq@13:', type=('build', 'run'))
+ depends_on('py-pyzmq@18:', type=('build', 'run'), when='@7.1.0:')
+ depends_on('py-traitlets@4.3:', type=('build', 'run'))
+ depends_on('py-ipython@4:', type=('build', 'run'))
+ depends_on('py-jupyter-client', type=('build', 'run'))
+ depends_on('py-ipykernel@4.4:', type=('build', 'run'))
depends_on('py-python-dateutil@2.1:', type=('build', 'run'))
- depends_on('py-tornado@4:', type=('build', 'run'))
+ depends_on('py-tornado@4:', type=('build', 'run'))
+ depends_on('py-tornado@5.1:', type=('build', 'run'), when='@7.1.0:')
+ depends_on('py-entrypoints', type=('build', 'run'), when='@7.1.0:')
+ depends_on('py-psutil', type=('build', 'run'), when='@7.1.0:')
+ depends_on('py-tqdm', type=('build', 'run'), when='@7.1.0:')