Skip to content

Commit 8593e39

Browse files
author
Mikhail Koviazin
committed
MANIFEST: add exported headers directory
When hiredis was forked to libvalkey, it changed its layout to have a proper `src` and `include` directories. Upon forking hiredis-py to libvalkey-py, `include` directory was missing from the source package which means the module could not be built from the sdist package. This issue was hidden by the fact that all the supported systems were provided with a binary package hence noone actually needed to build it. This was revealed when people started using libvalkey-py with Python 3.13 that was missing a binary package. This commit fixes this bug by adding `include` directory to MANIFEST.in Fixes #19 Signed-off-by: Mikhail Koviazin <[email protected]>
1 parent 9ef0488 commit 8593e39

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ include MANIFEST.in
33
include README.md
44
include src/*.[ch]
55
include vendor/libvalkey/COPYING
6+
include vendor/libvalkey/include/valkey/*.h
67
include vendor/libvalkey/src/*.[ch]
78
graft tests
89
global-exclude __pycache__

0 commit comments

Comments
 (0)