From 56944c517f4cf2da4cf23e54af694ff22002a6ef Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sat, 4 Nov 2023 18:54:21 +0100 Subject: [PATCH] python: Make sure to distribute new files Add pyproject.toml and tests/setup_test.py to Makefile.am. --- python/Makefile.am | 3 ++- python/tests/Makefile.am | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/python/Makefile.am b/python/Makefile.am index 1773fd305..05d167b60 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -9,7 +9,8 @@ SUBDIRS = . tests EXTRA_DIST = \ generator.py \ libxml.py \ - libxml2-python-api.xml + libxml2-python-api.xml \ + pyproject.toml if WITH_PYTHON AM_CPPFLAGS = \ diff --git a/python/tests/Makefile.am b/python/tests/Makefile.am index c2270ce59..588dcddca 100644 --- a/python/tests/Makefile.am +++ b/python/tests/Makefile.am @@ -1,5 +1,5 @@ exampledir = $(docdir)/python/examples -dist_example_DATA = $(PYTESTS) $(XMLS) +dist_example_DATA = $(PYTESTS) $(XMLS) setup_test.py PYTESTS= \ build.py \