From: Phil Howard Date: Wed, 11 Oct 2023 12:12:46 +0000 (+0100) Subject: bindings: python: require python 3.9.0 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07a326571501672ad8d00e00f7931aa480a5e569;p=qemu-gpiodev%2Flibgpiod.git bindings: python: require python 3.9.0 Required minimum version for PyModule_AddType helper. Signed-off-by: Phil Howard Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 66b7908..fd674aa 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -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__,