From c5ba76a772c4d3ef749dcd28b858396c4b9bbc2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 25 Nov 2023 07:11:01 +0100 Subject: [PATCH] Include tests in sdist Explicitly include tests in sdist archives, as they are used by packagers to test the package. Tests disappeared in the 3.5 release. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5082f47..c38756a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,3 +43,4 @@ dynamic = ["version"] [tool.flit.sdist] exclude = [".gitignore", ".github/"] +include = ["tests"]