diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2013-09-27 21:17:04 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2013-09-27 21:17:04 +0200 |
commit | 66357e3a89f66182502b3a8fd67789f792026711 (patch) | |
tree | bb46be2d5e996089967e099e1464f4b88356291e /setup.py | |
parent | 3dc1701f4157b321c33d6659aa856cc81a1c8cf3 (diff) | |
download | python-lxml-66357e3a89f66182502b3a8fd67789f792026711.tar.gz |
remove 'fake pyrex' files that were needed by setuptools before switching to cythonize()
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -7,13 +7,6 @@ import fnmatch # see the end of 'setupinfo.py' try: - import Cython - # may need to work around setuptools bug by providing a fake Pyrex - sys.path.insert(0, os.path.join(os.path.dirname(__file__), "fake_pyrex")) -except ImportError: - pass - -try: from setuptools import setup except ImportError: from distutils.core import setup |