summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-09-21 02:00:28 -0500
committerGitHub <noreply@github.com>2023-09-21 09:00:28 +0200
commitd79a3ecc28fea0e3a7d07853582541f19b08c019 (patch)
tree558bdbc30c7fc25eb8d8dee7424119de14d0b48b /var
parentdac3b453879439fd733b03d0106cc6fe070f71f6 (diff)
downloadspack-d79a3ecc28fea0e3a7d07853582541f19b08c019.tar.gz
spack-d79a3ecc28fea0e3a7d07853582541f19b08c019.tar.bz2
spack-d79a3ecc28fea0e3a7d07853582541f19b08c019.tar.xz
spack-d79a3ecc28fea0e3a7d07853582541f19b08c019.zip
py-gevent: relax dependency constraints (#40117)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-gevent/package.py16
1 files changed, 6 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/py-gevent/package.py b/var/spack/repos/builtin/packages/py-gevent/package.py
index 5e3b69e3ae..b684829f54 100644
--- a/var/spack/repos/builtin/packages/py-gevent/package.py
+++ b/var/spack/repos/builtin/packages/py-gevent/package.py
@@ -18,25 +18,21 @@ class PyGevent(PythonPackage):
version("21.8.0", sha256="43e93e1a4738c922a2416baf33f0afb0a20b22d3dba886720bc037cd02a98575")
version("1.5.0", sha256="b2814258e3b3fb32786bb73af271ad31f51e1ac01f33b37426b66cb8491b4c29")
- # limits according to wheels available on PyPI
- depends_on("python@3.8:3.12", when="@23.7.0:", type=("build", "run"))
- depends_on("python@2.7:3.10", when="@21.8:21.12", type=("build", "run"))
- depends_on("python@2.7:3.8", when="@1.5:20.6.0", type=("build", "run"))
+ depends_on("python@3.8:", when="@23.7.0:", type=("build", "run"))
+ depends_on("python@:3.10", when="@:21.12", type=("build", "run"))
depends_on("py-setuptools@40.8:", when="@20.5.1:", type=("build", "run"))
depends_on("py-setuptools@40.8:", when="@1.5:", type="build")
depends_on("py-setuptools@24.2:", when="@:1.4", type="build")
- depends_on("py-cython@3:", when="@20.5.1:", type="build")
+ # TODO: relax this until we support separate concretization of build deps by default
+ # depends_on("py-cython@3:", when="@20.5.1:", type="build")
depends_on("py-cython@0.29.14:", when="@1.5:", type="build")
- depends_on("py-cython@0.27:", when="@:1.4", type="build")
- depends_on("py-cffi@1.12.3:", when="@1.5:", type=("build", "run")) # from pyproject.toml
- depends_on("py-cffi@1.4:", when="@:1.4", type=("build", "run"))
+ depends_on("py-cffi@1.12.3:", type=("build", "run"))
depends_on("py-greenlet@3:", when="@23.7: ^python@3.12:", type=("build", "run"))
depends_on("py-greenlet@2:", when="@22.10.2: ^python@:3.11", type=("build", "run"))
depends_on("py-greenlet@1.1:1", when="@21.8:21.12.0", type=("build", "run"))
depends_on("py-greenlet@0.4.17:1", when="@20.12:21.1.2", type=("build", "run"))
- depends_on("py-greenlet@0.4.14:", when="@1.5:", type=("build", "run"))
- depends_on("py-greenlet@0.4.13:", when="@:1.4", type=("build", "run"))
+ depends_on("py-greenlet@0.4.14:", type=("build", "run"))
depends_on("py-zope-event", when="@20.5.1:", type=("build", "run"))
depends_on("py-zope-interface", when="@20.5.1:", type=("build", "run"))