diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-10-15 17:30:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 10:30:50 -0500 |
commit | 012b4f479f8df86506e0da4aa7995436bcb8cde0 (patch) | |
tree | 3e7ac1b60262d2394e6db2bff6f2bf137ccbeeff /var | |
parent | f8e4aa7d709e533cda0e1e46410433d408b1125e (diff) | |
download | spack-012b4f479f8df86506e0da4aa7995436bcb8cde0.tar.gz spack-012b4f479f8df86506e0da4aa7995436bcb8cde0.tar.bz2 spack-012b4f479f8df86506e0da4aa7995436bcb8cde0.tar.xz spack-012b4f479f8df86506e0da4aa7995436bcb8cde0.zip |
py-jupyter-client: add 6.1.12 (#26760)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyter-client/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter-client/package.py b/var/spack/repos/builtin/packages/py-jupyter-client/package.py index fe9f59b80c..6cd14b00f0 100644 --- a/var/spack/repos/builtin/packages/py-jupyter-client/package.py +++ b/var/spack/repos/builtin/packages/py-jupyter-client/package.py @@ -10,6 +10,7 @@ class PyJupyterClient(PythonPackage): homepage = "https://github.com/jupyter/jupyter_client" pypi = "jupyter-client/jupyter_client-6.1.7.tar.gz" + version('7.0.6', sha256='8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc') version('6.1.12', sha256='c4bca1d0846186ca8be97f4d2fa6d2bae889cce4892a167ffa1ba6bd1f73e782') version('6.1.7', sha256='49e390b36fe4b4226724704ea28d9fb903f1a3601b6882ce3105221cd09377a1') version('5.3.4', sha256='60e6faec1031d63df57f1cc671ed673dced0ed420f4377ea33db37b1c188b910') @@ -26,6 +27,7 @@ class PyJupyterClient(PythonPackage): depends_on('python@2.7:2.8,3.3:', type=('build', 'run')) depends_on('python@2.7:2.8,3.5:', type=('build', 'run'), when='@5:') depends_on('python@3.5:', type=('build', 'run'), when='@6:') + depends_on('python@3.6.1:', type=('build', 'run'), when='@6.2:') depends_on('py-setuptools', type=('build', 'run'), when='@5:') depends_on('py-traitlets', type=('build', 'run')) depends_on('py-jupyter-core', type=('build', 'run')) @@ -33,3 +35,5 @@ class PyJupyterClient(PythonPackage): depends_on('py-pyzmq@13:', type=('build', 'run')) depends_on('py-python-dateutil@2.1:', type=('build', 'run'), when='@5:') depends_on('py-tornado@4.1:', type=('build', 'run'), when='@5:') + depends_on('py-nest-asyncio@1.5:', type=('build', 'run'), when='@6.1.13:') + depends_on('py-entrypoints', type=('build', 'run'), when='@7:') |