summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Sailer <andre.philippe.sailer@cern.ch>2024-01-07 11:38:07 +0100
committerGitHub <noreply@github.com>2024-01-07 04:38:07 -0600
commit9168c855cf6dfdd6d8d76075c3bccb11fc217475 (patch)
tree1898b47ab3901b0ec5bfc30e9e484d25b4177506
parent8f4f691e2b2a6263f661fb0a455bcaf73e90036a (diff)
downloadspack-9168c855cf6dfdd6d8d76075c3bccb11fc217475.tar.gz
spack-9168c855cf6dfdd6d8d76075c3bccb11fc217475.tar.bz2
spack-9168c855cf6dfdd6d8d76075c3bccb11fc217475.tar.xz
spack-9168c855cf6dfdd6d8d76075c3bccb11fc217475.zip
py-pyheadtail: add latest version and cython constraint (#41978)
-rw-r--r--var/spack/repos/builtin/packages/py-pyheadtail/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyheadtail/package.py b/var/spack/repos/builtin/packages/py-pyheadtail/package.py
index 3908fcf2f4..a64d591b24 100644
--- a/var/spack/repos/builtin/packages/py-pyheadtail/package.py
+++ b/var/spack/repos/builtin/packages/py-pyheadtail/package.py
@@ -13,6 +13,7 @@ class PyPyheadtail(PythonPackage):
homepage = "https://github.com/PyCOMPLETE/PyHEADTAIL"
pypi = "PyHEADTAIL/PyHEADTAIL-1.14.1.tar.gz"
+ version("1.16.1", sha256="bbe69eeb2f57fffee455a35dc14cca95a9c650ba334982fa9ba62a1ebd5b5606")
version("1.14.1", sha256="bf90ac7e8764176c55e82c363cad7ab43543863b6ef482760ced23b78e917bb4")
version("1.13.1", sha256="29c742573a918126b5a9c21806ee0ec6a34ec642a0e6ad200f6d4551bf1bb310")
@@ -20,6 +21,8 @@ class PyPyheadtail(PythonPackage):
depends_on("python@3:", when="@1.13.5:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-cython", type="build")
+ # cython@3: support was added in 1.16.1
+ depends_on("py-cython@:2", when="@:1.16.0", type="build")
depends_on("py-numpy", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"))
depends_on("py-h5py", type=("build", "run"))