diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2024-11-24 15:31:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 15:31:31 +0100 |
commit | 281c274e0b8388cb8b69b156af658f2be6c8e8fb (patch) | |
tree | 61e4416dc5daf17423bee612cd00e2bec74d47d8 | |
parent | 16e130ece113c432861e32c8f791d2a855b42f72 (diff) | |
download | spack-281c274e0b8388cb8b69b156af658f2be6c8e8fb.tar.gz spack-281c274e0b8388cb8b69b156af658f2be6c8e8fb.tar.bz2 spack-281c274e0b8388cb8b69b156af658f2be6c8e8fb.tar.xz spack-281c274e0b8388cb8b69b156af658f2be6c8e8fb.zip |
py-jupyter-packaging: add Python 3.13 support (#47769)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyter-packaging/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py b/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py index c45a7b86dc..7c9df4e9ac 100644 --- a/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py +++ b/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py @@ -16,6 +16,7 @@ class PyJupyterPackaging(PythonPackage): license("BSD-3-Clause") + version("0.12.3", sha256="9d9b2b63b97ffd67a8bc5391c32a421bc415b264a32c99e4d8d8dd31daae9cf4") version("0.12.0", sha256="b27455d60adc93a7baa2e0b8f386be81b932bb4e3c0116046df9ed230cd3faac") version("0.11.1", sha256="6f5c7eeea98f7f3c8fb41d565a94bf59791768a93f93148b3c2dfb7ebade8eec") version("0.10.6", sha256="a8a2c90bf2e0cae83be63ccb0b7035032a1589f268cc08b1d479e37ce50fc940") @@ -27,8 +28,9 @@ class PyJupyterPackaging(PythonPackage): url="https://files.pythonhosted.org/packages/source/j/jupyter_packaging/jupyter-packaging-0.7.12.tar.gz", ) - depends_on("python@3.7:", when="@0.11:", type=("build", "run")) - depends_on("python@3.6:", type=("build", "run")) + # https://github.com/jupyter/jupyter-packaging/pull/153 + depends_on("python@:3.12", when="@:0.12.1", type=("build", "run")) + depends_on("py-hatchling@0.25:", when="@0.12.1:", type="build") depends_on("py-packaging", type=("build", "run")) depends_on("py-tomlkit", when="@0.8:", type=("build", "run")) depends_on("py-setuptools@60.2:", when="@0.12:", type=("build", "run")) |