Fix build for Cython 0.21

This commit is contained in:
Jason Paryani
2014-09-10 10:48:23 -07:00
parent e36f0bdc6b
commit e8ddfb9e91
7 changed files with 135 additions and 135 deletions

View File

@@ -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",