Commit ad94a5b5 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #140 from bfroehle/cython_inline_ctx

cython_inline: Stop passing unused `ctx` parameter to `cythonize`.
parents 68811fa9 b5fffca9
......@@ -201,7 +201,7 @@ def __invoke(%(params)s):
extra_compile_args = cflags)
if build_extension is None:
build_extension = _get_build_extension()
build_extension.extensions = cythonize([extension], ctx=ctx, quiet=quiet)
build_extension.extensions = cythonize([extension], include_path=cython_include_dirs, quiet=quiet)
build_extension.build_temp = os.path.dirname(pyx_file)
build_extension.build_lib = lib_dir
build_extension.run()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment