From 8acb4da6aa4d54446da97efd523d8d6b8ddf3ab6 Mon Sep 17 00:00:00 2001 From: iarspider Date: Fri, 7 Oct 2022 08:09:56 +0200 Subject: [PATCH] Add checksum for py-tornado 6.2, py-pyzmq 24.0.1, py-jupyter-client 7.3.5 (#33062) --- .../packages/py-jupyter-client/package.py | 26 ++++++++++++------- .../builtin/packages/py-pyzmq/package.py | 2 ++ .../builtin/packages/py-tornado/package.py | 2 ++ 3 files changed, 21 insertions(+), 9 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 2d843afd2b..664c8b28ca 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("7.3.5", sha256="3c58466a1b8d55dba0bf3ce0834e4f5b7760baf98d1d73db0add6f19de9ecd1d") version("7.1.2", sha256="4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96") version("7.0.6", sha256="8b6e06000eb9399775e0a55c52df6c1be4766666209c22f90c2691ded0e338dc") version("6.1.12", sha256="c4bca1d0846186ca8be97f4d2fa6d2bae889cce4892a167ffa1ba6bd1f73e782") @@ -29,16 +30,23 @@ class PyJupyterClient(PythonPackage): 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:", 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("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("py-hatchling@0.25:", when="@7.3.5:", type="build") - depends_on("py-entrypoints", type=("build", "run"), when="@7:") + 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:", type=("build", "run"), when="@6:") - depends_on("py-nest-asyncio@1.5:", type=("build", "run"), when="@6.1.13:") - depends_on("py-python-dateutil@2.1:", type=("build", "run"), when="@5:") + depends_on("py-jupyter-core@4.6.0:", when="@6:", 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-python-dateutil@2.8.2:", when="@7.3.5:", type=("build", "run")) depends_on("py-pyzmq@13:", type=("build", "run")) - depends_on("py-tornado@4.1:", type=("build", "run"), when="@5:") + 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-tornado@6.2:", when="@7.3.5:", type=("build", "run")) depends_on("py-traitlets", type=("build", "run")) diff --git a/var/spack/repos/builtin/packages/py-pyzmq/package.py b/var/spack/repos/builtin/packages/py-pyzmq/package.py index cab1915556..7ac54a7e64 100644 --- a/var/spack/repos/builtin/packages/py-pyzmq/package.py +++ b/var/spack/repos/builtin/packages/py-pyzmq/package.py @@ -32,6 +32,7 @@ class PyPyzmq(PythonPackage): "zmq.devices", ] + version("24.0.1", sha256="216f5d7dbb67166759e59b0479bca82b8acf9bed6015b526b8eb10143fb08e77") version("22.3.0", sha256="8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c") version("18.1.0", sha256="93f44739db69234c013a16990e43db1aa0af3cf5a4b8b377d028ff24515fbeb3") version("18.0.1", sha256="8b319805f6f7c907b101c864c3ca6cefc9db8ce0791356f180b1b644c7347e4c") @@ -51,6 +52,7 @@ class PyPyzmq(PythonPackage): depends_on("libzmq", type=("build", "link")) depends_on("libzmq@3.2:", type=("build", "link"), when="@22.3.0:") depends_on("py-setuptools", type="build", when="@22.3.0:") + depends_on("py-packaging", type="build") # Only when python is provided by 'pypy' depends_on("py-py", type=("build", "run"), when="@:22") depends_on("py-cffi", type=("build", "run"), when="@:22") diff --git a/var/spack/repos/builtin/packages/py-tornado/package.py b/var/spack/repos/builtin/packages/py-tornado/package.py index 78a76d8de2..a479d4a938 100644 --- a/var/spack/repos/builtin/packages/py-tornado/package.py +++ b/var/spack/repos/builtin/packages/py-tornado/package.py @@ -13,6 +13,7 @@ class PyTornado(PythonPackage): homepage = "https://github.com/tornadoweb/tornado" pypi = "tornado/tornado-6.1.tar.gz" + version("6.2", sha256="9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13") version("6.1", sha256="33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791") version("6.0.3", sha256="c845db36ba616912074c5b1ee897f8e0124df269468f25e4fe21fe72f6edd7a9") version("5.1.1", sha256="4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409") @@ -20,6 +21,7 @@ class PyTornado(PythonPackage): depends_on("py-setuptools", type="build") + depends_on("python@3.7:", when="@6.2:", type=("build", "run")) depends_on("python@3.5.2:", when="@6:", type=("build", "run")) depends_on("python@2.7:2.8,3.4:", type=("build", "run")) depends_on("py-backports-ssl-match-hostname", when="@:4 ^python@:2.7.8", type=("build", "run"))