We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c8b51 commit bf4124fCopy full SHA for bf4124f
setup.py
@@ -32,9 +32,10 @@
32
33
class Sdist(sdist):
34
def __init__(self, *args, **kwargs):
35
+ cy_opt = cython_compiler.default_options.copy()
36
+ cy_opt['cplus'] = True
37
for src in glob('msgpack/*.pyx'):
- cython_compiler.compile(glob('msgpack/*.pyx'),
- cython_compiler.default_options)
38
+ cython_compiler.compile(glob('msgpack/*.pyx'), cy_opt)
39
sdist.__init__(self, *args, **kwargs)
40
else:
41
sources = ['msgpack/_msgpack.cpp']
0 commit comments