From ac7203e7f0809c5a9ddb69dcd86bbcb04a5bf9eb Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 28 Jan 2026 11:22:58 +0000 Subject: [PATCH 1/2] fix(build): include test/utils/*.py in sdist I noticed this because Debian's packaging is based on the sdist from PyPI, but tests failed because `test/utils/` wasn't distributed there. (See https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html for the default behaviour.) Signed-off-by: Colin Watson --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 1aba38f6..7408adb9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include LICENSE +recursive-include test/utils *.py From f634a9d0a776e3ed29e840e511773a14060af17c Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 28 Jan 2026 12:03:53 +0000 Subject: [PATCH 2/2] fix(build): include test resources in sdist Signed-off-by: Colin Watson --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 7408adb9..1d32fa21 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include LICENSE +recursive-include resources *.crt *.env *.env.example *.key *.txt recursive-include test/utils *.py