~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-11 15:04:23 UTC
  • mfrom: (5848.1.1 2.4-cython-first)
  • Revision ID: pqm@pqm.ubuntu.com-20110511150423-tpm1ablukqalkvim
(jameinel) Default to using Cython for compiling code,
 rather than Pyrex. (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
ext_modules = []
172
172
try:
173
173
    try:
 
174
        from Cython.Distutils import build_ext
 
175
        from Cython.Compiler.Version import version as pyrex_version
 
176
    except ImportError:
 
177
        print("No Cython, trying Pyrex...")
174
178
        from Pyrex.Distutils import build_ext
175
179
        from Pyrex.Compiler.Version import version as pyrex_version
176
 
    except ImportError:
177
 
        print("No Pyrex, trying Cython...")
178
 
        from Cython.Distutils import build_ext
179
 
        from Cython.Compiler.Version import version as pyrex_version
180
180
except ImportError:
181
181
    have_pyrex = False
182
182
    # try to build the extension from the prior generated source.