py-greenlet: add missing forward compat bound (#46113)

This commit is contained in:
Harmen Stoppels
2024-08-29 17:55:26 +02:00
committed by GitHub
parent dc3f5cd606
commit 05357052ac

View File

@@ -32,5 +32,8 @@ class PyGreenlet(PythonPackage):
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("python", type=("build", "link", "run"))
with default_args(type=("build", "link", "run")):
depends_on("python")
depends_on("python@:3.11", when="@:2")
depends_on("py-setuptools", type="build")