~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Packman
  • Date: 2011-10-06 11:50:55 UTC
  • mto: (6015.33.10 2.4)
  • mto: This revision was merged to the branch mainline in revision 6202.
  • Revision ID: martin.packman@canonical.com-20111006115055-h3ktgar1vgwxf0qg
Remove '+' from the end of pyrex_version in setup.py to work with Cython 0.15+

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
    from distutils.command.build_ext import build_ext
199
199
else:
200
200
    have_pyrex = True
201
 
    pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
 
201
    pyrex_version_info = tuple(map(int, pyrex_version.rstrip("+").split('.')))
202
202
 
203
203
 
204
204
class build_ext_if_possible(build_ext):