Skip to content

Commit

Permalink
Fix new_build_ext super.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwb committed Jan 2, 2017
1 parent cbbcdbb commit 9be812e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cython/Distutils/build_ext.py
Expand Up @@ -17,7 +17,7 @@ def finalize_options(self):
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

0 comments on commit 9be812e

Please sign in to comment.