diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2023-03-22 03:06:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 09:06:10 +0100 |
commit | 2418bf446d36198f3612451dd19c20ff540c01a4 (patch) | |
tree | f112fd14c2ad2c30b5915acb431798dfb91078ea | |
parent | 893bb8d7c7af4acb666347fc116ac1c7b78e7878 (diff) | |
download | spack-2418bf446d36198f3612451dd19c20ff540c01a4.tar.gz spack-2418bf446d36198f3612451dd19c20ff540c01a4.tar.bz2 spack-2418bf446d36198f3612451dd19c20ff540c01a4.tar.xz spack-2418bf446d36198f3612451dd19c20ff540c01a4.zip |
py-jupyter-client: add v8.1.0 (#36288)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyter-client/package.py | 33 |
1 files changed, 19 insertions, 14 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 19929c5536..f6e64f73bc 100644 --- a/var/spack/repos/builtin/packages/py-jupyter-client/package.py +++ b/var/spack/repos/builtin/packages/py-jupyter-client/package.py @@ -13,6 +13,7 @@ class PyJupyterClient(PythonPackage): homepage = "https://github.com/jupyter/jupyter_client" pypi = "jupyter-client/jupyter_client-6.1.7.tar.gz" + version("8.1.0", sha256="3fbab64100a0dcac7701b1e0f1a4412f1ccb45546ff2ad9bc4fcbe4e19804811") version("7.3.5", sha256="3c58466a1b8d55dba0bf3ce0834e4f5b7760baf98d1d73db0add6f19de9ecd1d") version("7.1.2", sha256="4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96") version("7.0.6", sha256="8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc") @@ -29,24 +30,28 @@ class PyJupyterClient(PythonPackage): version("4.1.0", sha256="b1786dbf4752907292afed4a5a192572280a8794be0c499d1f530ae8e1550d57") version("4.0.0", sha256="a39a4181ea2021daf6e821acae836999ef6e0fefe603813a7a7d4658d2ffa2ac") - depends_on("python@2.7:2.8,3.3:", type=("build", "run")) - depends_on("python@2.7:2.8,3.5:", when="@5:", type=("build", "run")) - depends_on("python@3.5:", when="@6:", type=("build", "run")) - depends_on("python@3.6.1:", when="@6.2:", type=("build", "run")) - depends_on("python@3.7:", when="@7.3.5:", type=("build", "run")) - depends_on("py-setuptools", when="@5:7.3.4", type=("build", "run")) + depends_on("python@3.8:", when="@8:", type=("build", "run")) + depends_on("py-hatchling@1.5:", when="@8:", type="build") depends_on("py-hatchling@0.25:", when="@7.3.5:", type="build") - depends_on("py-entrypoints", when="@7:", type=("build", "run")) - depends_on("py-jupyter-core", type=("build", "run")) - depends_on("py-jupyter-core@4.6.0:", when="@6:", type=("build", "run")) + depends_on("py-importlib-metadata@4.8.3:", when="@8: ^python@:3.9", type=("build", "run")) + depends_on("py-jupyter-core@4.12:", when="@8:", type=("build", "run")) depends_on("py-jupyter-core@4.9.2:", when="@7.3.5:", type=("build", "run")) - depends_on("py-nest-asyncio@1.5:", when="@6.1.13:", type=("build", "run")) - depends_on("py-nest-asyncio@1.5.4:", when="@7.3.5:", type=("build", "run")) - depends_on("py-python-dateutil@2.1:", when="@5:", type=("build", "run")) + depends_on("py-jupyter-core@4.6.0:", when="@6:", type=("build", "run")) + depends_on("py-jupyter-core", type=("build", "run")) depends_on("py-python-dateutil@2.8.2:", when="@7.3.5:", type=("build", "run")) - depends_on("py-pyzmq@13:", type=("build", "run")) + depends_on("py-python-dateutil@2.1:", when="@5:", type=("build", "run")) depends_on("py-pyzmq@23:", when="@7.3.5:", type=("build", "run")) - depends_on("py-tornado@4.1:", when="@5:", type=("build", "run")) + depends_on("py-pyzmq@13:", type=("build", "run")) depends_on("py-tornado@6.2:", when="@7.3.5:", type=("build", "run")) + depends_on("py-tornado@4.1:", when="@5:", type=("build", "run")) + depends_on("py-traitlets@5.3:", when="@8:", type=("build", "run")) depends_on("py-traitlets", type=("build", "run")) + + conflicts("^py-jupyter-core@5.0") + + # Historical dependencies + depends_on("py-setuptools", when="@5:7.3.4", type=("build", "run")) + depends_on("py-entrypoints", when="@7", type=("build", "run")) + depends_on("py-nest-asyncio@1.5.4:", when="@7.3.5", type=("build", "run")) + depends_on("py-nest-asyncio@1.5:", when="@6.1.13:7.1.2", type=("build", "run")) |