diff options
author | Erik Heeren <erik.heeren@epfl.ch> | 2023-01-27 17:52:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-27 08:52:23 -0800 |
commit | 0bfd06d0b6ab3db5cca301d0685b7fb63033088f (patch) | |
tree | 4307885067fd54bd45a99c3e6a75b301b08005d9 | |
parent | 367bd4d670e9c91b7da81d5ff8d685554df14687 (diff) | |
download | spack-0bfd06d0b6ab3db5cca301d0685b7fb63033088f.tar.gz spack-0bfd06d0b6ab3db5cca301d0685b7fb63033088f.tar.bz2 spack-0bfd06d0b6ab3db5cca301d0685b7fb63033088f.tar.xz spack-0bfd06d0b6ab3db5cca301d0685b7fb63033088f.zip |
Py ipyparallel (#35178)
* py-ipyparallel: add 8.4.1, which builds with py-hatchling
* py-ipyparallel: copyright and redundant py-setuptools dependency
* py-ipyparallel: py-packaging was dropped after 8.0.0
-rw-r--r-- | var/spack/repos/builtin/packages/py-ipyparallel/package.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipyparallel/package.py b/var/spack/repos/builtin/packages/py-ipyparallel/package.py index fc5de40d37..65b887c2ea 100644 --- a/var/spack/repos/builtin/packages/py-ipyparallel/package.py +++ b/var/spack/repos/builtin/packages/py-ipyparallel/package.py @@ -12,6 +12,7 @@ class PyIpyparallel(PythonPackage): homepage = "https://github.com/ipython/ipyparallel" pypi = "ipyparallel/ipyparallel-7.1.0.tar.gz" + version("8.4.1", sha256="670bbe05755381742e1ea01177dc428ff8f3e94af1f0d5642c9d19f37ca8289b") version("8.0.0", sha256="95305a886f2c42e9603c034ea684e5c031d9d4222c66ed6d85eb3ae15d631e4b") version("7.1.0", sha256="ea756df0d2485bac19cccb0dbf4cafbc855c922b9b5905b4906e6cfac8b3c648") version("6.3.0", sha256="0a97b276c62db633e9e97a816282bdd166f9df74e28204f0c8fa54b71944cfdc") @@ -23,10 +24,10 @@ class PyIpyparallel(PythonPackage): depends_on("python@2.7,3.4:", type=("build", "run")) depends_on("py-jupyterlab@3.0:3", type="build", when="@7.1:") - depends_on("py-packaging", type="build", when="@7.1:") - depends_on("py-setuptools@40.8:", type="build", when="@7.1:") + depends_on("py-packaging", type="build", when="@7.1:8.0.0") + depends_on("py-setuptools@40.8:", type="build", when="@7.1:8.2") depends_on("py-setuptools@:60", type="build", when="@:8.2.0") - depends_on("py-setuptools", type="build") + depends_on("py-hatchling@0.25:", type="build", when="@8.4:") depends_on("py-ipython-genutils", type=("build", "run"), when="@:6.3") depends_on("py-entrypoints", type=("build", "run"), when="@7.1:") |