Commit 9be812eb authored by Robert Bradshaw's avatar Robert Bradshaw

Fix new_build_ext super.

parent cbbcdbb3
......@@ -17,7 +17,7 @@ class new_build_ext(_build_ext, object):
from Cython.Build.Dependencies import cythonize
self.distribution.ext_modules[:] = cythonize(
self.distribution.ext_modules)
super(build_ext, self).finalize_options()
super(new_build_ext, self).finalize_options()
# This will become new_build_ext in the future.
from .old_build_ext import old_build_ext as build_ext
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