bindings: python: decouple the version of the bindings from libgpiod API version
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 30 Nov 2022 12:42:29 +0000 (13:42 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 08:54:14 +0000 (09:54 +0100)
commit242d88b7fe5949e7a15f63e05b0b2cd7427e064f
tree0ddb1701b9ea8f3f8395e0d80c12566222ecc96f
parentbd148b28467b770e74641a7fd20165704be66e8f
bindings: python: decouple the version of the bindings from libgpiod API version

Python bindings now have their own setup.py script and can be built
separately from the rest of the code-base. Let's decouple the python
package version from libgpiod API (but let's keep a module attribute
containing the API version) by introducing a version.py submodule that
can be executed by the setup.py script. This way we have a single
canonical place defining the version number.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/gpiod/__init__.py
bindings/python/gpiod/ext/module.c
bindings/python/gpiod/version.py [new file with mode: 0644]
bindings/python/setup.py
bindings/python/tests/tests_module.py