The documentation example from http://docs.cython.org/en/latest/src/userguide/wrapping_CPlusPlus.html#specify-c-language-in-setup-py ``` from distutils.core import setup from Cython.Build import cythonize setup(ext_modules = cythonize( "rect.pyx", # our Cython source sources=["Rectangle.cpp"], # additional source file(s) language="c++", # generate C++ code )) ``` throws error with 0.29.12: > ValueError: got unknown compilation option, please remove: sources If this to be believed (https://github.com/fginter/dep_search/issues/13), it doesn't work since 0.26.
The documentation example from http://docs.cython.org/en/latest/src/userguide/wrapping_CPlusPlus.html#specify-c-language-in-setup-py
throws error with 0.29.12:
If this to be believed (fginter/dep_search#13), it doesn't work since 0.26.