bindings: python: require python 3.9.0
authorPhil Howard <phil@gadgetoid.com>
Wed, 11 Oct 2023 12:12:46 +0000 (13:12 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 12 Oct 2023 19:07:11 +0000 (21:07 +0200)
Required minimum version for PyModule_AddType helper.

Signed-off-by: Phil Howard <phil@gadgetoid.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/setup.py

index 66b7908098eb17f3e754942a0d27456cc76afb01..fd674aa8daca5fecee89d9125e71662032a37a4a 100644 (file)
@@ -60,6 +60,7 @@ with open("gpiod/version.py", "r") as fd:
 setup(
     name="libgpiod",
     packages=find_packages(exclude=["tests", "tests.*"]),
+    python_requires=">=3.9.0",
     ext_modules=extensions,
     cmdclass={"build_ext": build_ext},
     version=__version__,