py-greenlet: add missing forward compat bound for python (#46951)

This commit is contained in:
Harmen Stoppels 2024-10-14 11:21:39 +02:00 committed by GitHub
parent 6c6b262140
commit b5610cdb8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,11 +29,12 @@ class PyGreenlet(PythonPackage):
version("0.4.17", sha256="41d8835c69a78de718e466dd0e6bfd4b46125f21a67c3ff6d76d8d8059868d6b")
version("0.4.13", sha256="0fef83d43bf87a5196c91e73cb9772f945a4caaff91242766c5916d1dd1381e4")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("c", type="build")
depends_on("cxx", type="build")
with default_args(type=("build", "link", "run")):
depends_on("python")
depends_on("python@:3.11", when="@:2")
depends_on("python@:3.12", when="@:3.0")
depends_on("py-setuptools", type="build")