diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2017-08-25 22:46:13 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2017-08-25 22:55:38 +0200 |
commit | be8e9ced88a366228b41a64045e9cbfa8fa51928 (patch) | |
tree | 0840523177ef73c0fce91a94b6f140c4112c4705 /setup.py | |
parent | 51cc426a21001c7d6e5e09fed1bfc9951ea86dcb (diff) | |
download | cython-be8e9ced88a366228b41a64045e9cbfa8fa51928.tar.gz |
Remove support and special handling code for Py3.2.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 93 |
1 files changed, 16 insertions, 77 deletions
@@ -34,16 +34,6 @@ class sdist(sdist_orig): sdist_orig.run(self) add_command_class('sdist', sdist) -if sys.version_info[:2] == (3, 2): - import lib2to3.refactor - from distutils.command.build_py \ - import build_py_2to3 as build_py - # need to convert sources to Py3 on installation - with open('2to3-fixers.txt') as f: - fixers = [line.strip() for line in f if line.strip()] - build_py.fixer_names = fixers - add_command_class("build_py", build_py) - pxd_include_dirs = [ directory for directory, dirs, files in os.walk(os.path.join('Cython', 'Includes')) @@ -61,15 +51,13 @@ setup_args['package_data'] = { 'Cython.Runtime' : ['*.pyx', '*.pxd'], 'Cython.Utility' : ['*.pyx', '*.pxd', '*.c', '*.h', '*.cpp'], 'Cython' : [ p[7:] for p in pxd_include_patterns ], - } + 'Cython.Debugger.Tests': ['codefile', 'cfuncs.c'], +} # This dict is used for passing extra arguments that are setuptools # specific to setup setuptools_extra_args = {} -# tells whether to include cygdb (the script and the Cython.Debugger package -include_debugger = sys.version_info[:2] > (2, 5) - if 'setuptools' in sys.modules: setuptools_extra_args['zip_safe'] = False setuptools_extra_args['entry_points'] = { @@ -85,15 +73,14 @@ else: else: scripts = ["cython.py", "cythonize.py"] -if include_debugger: - if 'setuptools' in sys.modules: - setuptools_extra_args['entry_points']['console_scripts'].append( - 'cygdb = Cython.Debugger.Cygdb:main') +if 'setuptools' in sys.modules: + setuptools_extra_args['entry_points']['console_scripts'].append( + 'cygdb = Cython.Debugger.Cygdb:main') +else: + if os.name == "posix": + scripts.append('bin/cygdb') else: - if os.name == "posix": - scripts.append('bin/cygdb') - else: - scripts.append('cygdb.py') + scripts.append('cygdb.py') def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False): @@ -169,61 +156,17 @@ def compile_cython_modules(profile=False, compile_more=False, cython_with_refnan # XXX hack around setuptools quirk for '*.pyx' sources extensions[-1].sources[0] = pyx_source_file - if sys.version_info[:2] == (3, 2): - # Python 3.2: can only run Cython *after* running 2to3 - build_ext = _defer_cython_import_in_py32(source_root, profile) - else: - from Cython.Distutils import build_ext - if profile: - from Cython.Compiler.Options import get_directive_defaults - get_directive_defaults()['profile'] = True - sys.stderr.write("Enabled profiling for the Cython binary modules\n") + from Cython.Distutils import build_ext + if profile: + from Cython.Compiler.Options import get_directive_defaults + get_directive_defaults()['profile'] = True + sys.stderr.write("Enabled profiling for the Cython binary modules\n") # not using cythonize() here to let distutils decide whether building extensions was requested add_command_class("build_ext", build_ext) setup_args['ext_modules'] = extensions -def _defer_cython_import_in_py32(source_root, profile=False): - # Python 3.2: can only run Cython *after* running 2to3 - # => re-import Cython inside of build_ext - from distutils.command.build_ext import build_ext as build_ext_orig - - class build_ext(build_ext_orig): - # we must keep the original modules alive to make sure - # their code keeps working when we remove them from - # sys.modules - dead_modules = [] - - def __reimport(self): - if self.dead_modules: - return - # add path where 2to3 installed the transformed sources - # and make sure Python (re-)imports them from there - already_imported = [ - module for module in sys.modules - if module == 'Cython' or module.startswith('Cython.') - ] - keep_alive = self.dead_modules.append - for module in already_imported: - keep_alive(sys.modules[module]) - del sys.modules[module] - sys.path.insert(0, os.path.join(source_root, self.build_lib)) - - def build_extensions(self): - self.__reimport() - if profile: - from Cython.Compiler.Options import directive_defaults - directive_defaults['profile'] = True - print("Enabled profiling for the Cython binary modules") - from Cython.Build.Dependencies import cythonize - self.distribution.ext_modules[:] = cythonize( - self.distribution.ext_modules) - build_ext_orig.build_extensions(self) - - return build_ext - - cython_profile = '--cython-profile' in sys.argv if cython_profile: sys.argv.remove('--cython-profile') @@ -271,6 +214,8 @@ packages = [ 'Cython.Compiler', 'Cython.Runtime', 'Cython.Distutils', + 'Cython.Debugger', + 'Cython.Debugger.Tests', 'Cython.Plex', 'Cython.Tests', 'Cython.Build.Tests', @@ -280,12 +225,6 @@ packages = [ 'pyximport', ] -if include_debugger: - packages.append('Cython.Debugger') - packages.append('Cython.Debugger.Tests') - # it's enough to do this for Py2.5+: - setup_args['package_data']['Cython.Debugger.Tests'] = ['codefile', 'cfuncs.c'] - setup( name='Cython', version=version, |