Fix build for Cython 0.21
This commit is contained in:
4
setup.py
4
setup.py
@@ -65,12 +65,12 @@ setup(
|
||||
packages=["capnp"],
|
||||
version=VERSION,
|
||||
package_data={'capnp': ['*.pxd', '*.h', '*.capnp', 'helpers/*.pxd', 'helpers/*.h', 'includes/*.pxd', 'lib/*.pxd', 'lib/*.py', 'lib/*.pyx']},
|
||||
ext_modules=cythonize('capnp/lib/*.pyx', language="c++"),
|
||||
ext_modules=cythonize('capnp/lib/*.pyx'),
|
||||
cmdclass = {
|
||||
'clean': clean
|
||||
},
|
||||
install_requires=[
|
||||
'cython > 0.19',
|
||||
'cython >= 0.21',
|
||||
'setuptools >= 0.8'],
|
||||
# PyPi info
|
||||
description="A cython wrapping of the C++ Cap'n Proto library",
|
||||
|
||||
Reference in New Issue
Block a user