Skip to content

Commit 06ed24a

Browse files
committed
Fix setup scripts.
Support _msgpack.cpp
1 parent ebe4c1f commit 06ed24a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include setup.py
22
include COPYING
3-
recursive-include msgpack *.h *.c *.pyx
3+
recursive-include msgpack *.h *.c *.pyx *.cpp
44
recursive-include test *.py
55
recursive-include test3 *.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, *args, **kwargs):
3737
cython_compiler.default_options)
3838
sdist.__init__(self, *args, **kwargs)
3939
else:
40-
sources = ['msgpack/_msgpack.c']
40+
sources = ['msgpack/_msgpack.cpp']
4141

4242
for f in sources:
4343
if not os.path.exists(f):

0 commit comments

Comments
 (0)