From: Bartosz Golaszewski Date: Wed, 20 Nov 2024 13:18:18 +0000 (+0100) Subject: bindings: python: add .pyi files to EXTRA_DIST X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=93613618d25d257d387fe146cb5e8edb1da728b0;p=qemu-gpiodev%2Flibgpiod.git bindings: python: add .pyi files to EXTRA_DIST While python sdist and wheels are built separately these days, we still want to package all the extra files in the regular libgpiod release tarballs. Add new .pyi files to automake's EXTRA_DIST. Reviewed-by: Vincent Fazio Link: https://lore.kernel.org/r/20241120-drop-distutils-v1-1-7498e8b3babe@linaro.org Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/gpiod/Makefile.am b/bindings/python/gpiod/Makefile.am index d6be9dc..49addcc 100644 --- a/bindings/python/gpiod/Makefile.am +++ b/bindings/python/gpiod/Makefile.am @@ -6,6 +6,7 @@ SUBDIRS = ext EXTRA_DIST = \ chip_info.py \ chip.py \ + _ext.pyi \ edge_event.py \ exception.py \ info_event.py \ diff --git a/bindings/python/tests/gpiosim/Makefile.am b/bindings/python/tests/gpiosim/Makefile.am index 7004f3a..b403f3c 100644 --- a/bindings/python/tests/gpiosim/Makefile.am +++ b/bindings/python/tests/gpiosim/Makefile.am @@ -3,5 +3,6 @@ EXTRA_DIST = \ chip.py \ + _ext.pyi \ ext.c \ __init__.py diff --git a/bindings/python/tests/procname/Makefile.am b/bindings/python/tests/procname/Makefile.am index c4a8fd5..dbc8e64 100644 --- a/bindings/python/tests/procname/Makefile.am +++ b/bindings/python/tests/procname/Makefile.am @@ -2,5 +2,6 @@ # SPDX-FileCopyrightText: 2022 Bartosz Golaszewski EXTRA_DIST = \ + _ext.pyi \ ext.c \ __init__.py