projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22173b7
)
bindings: python: require python 3.9.0
author
Phil Howard
<phil@gadgetoid.com>
Wed, 11 Oct 2023 12:12:46 +0000
(13:12 +0100)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/bindings/python/setup.py
b/bindings/python/setup.py
index 66b7908098eb17f3e754942a0d27456cc76afb01..fd674aa8daca5fecee89d9125e71662032a37a4a 100644
(file)
--- 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__,