From 59a639fa977e4a2e19c6cc60b44cbc9926418710 Mon Sep 17 00:00:00 2001 From: Karl Velicka Date: Tue, 24 Sep 2024 15:48:15 +0100 Subject: [PATCH] Include _custom_build in sdist This fixes build issues for installations that cannot use wheels published on PyPI. Issue #364 would be fixed by this. Python build tools like `python -m build` first build a source distribuiton (sdist) and then use it (and only it) to build a binary wheel from. This doesn't work if one of the build scripts isn't in the sdist however, which was the case prior to this patch. --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 1720a9c..ce627de 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ include LICENSE.md include CHANGELOG.md include requirements.txt include buildutils/* +include _custom_build/* include capnp/lib/capnp_api.h include Pipfile include tox.ini