From e7ad8f3f5286bf4054e5818029bc3d12bef29bb2 Mon Sep 17 00:00:00 2001 From: Muhamed Fazal PS Date: Fri, 10 Jul 2026 14:27:41 +0530 Subject: [PATCH] fix: include tests directory in sdist The sdist was missing tests/__init__.py, causing test collection failures when installing from source distribution. Adds recursive-include tests *.py to MANIFEST.in. Fixes #341 --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index a5021c60..fe243962 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include README.rst include LICENSE +recursive-include tests *.py