From 1408e27ac533e8a07b1e675c4c81cce08b961c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 1 Nov 2023 07:47:22 +0100 Subject: [PATCH] Fix including docs and tests in sdist (#353) Fix the `recursive-include` statements in `MANIFEST.in` to actually include full documentation and test tree. The statements without a list of globs were ineffective, and only `.py` files were included. Effectively, docs were missing completely and tests missed required data files (e.g. `json_test_data.txt`). --- MANIFEST.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4a1617e..3274baf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,5 +4,5 @@ include README.md include TODO.rst include pytest.ini include tox.ini -recursive-include docs -recursive-include tests +recursive-include docs * +recursive-include tests *