Skip to content

Commit 3bc19e5

Browse files
committed
BLD: remove fake_pyrex
1 parent fc08800 commit 3bc19e5

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

fake_pyrex/Pyrex/Distutils/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

fake_pyrex/Pyrex/Distutils/build_ext.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

fake_pyrex/Pyrex/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
import versioneer
1818
cmdclass = versioneer.get_cmdclass()
1919

20-
# may need to work around setuptools bug by providing a fake Pyrex
2120
min_cython_ver = '0.19.1'
2221
try:
2322
import Cython
24-
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "fake_pyrex"))
2523
ver = Cython.__version__
2624
_CYTHON_INSTALLED = ver >= LooseVersion(min_cython_ver)
2725
except ImportError:
@@ -78,7 +76,6 @@
7876
if not _CYTHON_INSTALLED:
7977
raise ImportError('No supported version of Cython installed.')
8078
from Cython.Distutils import build_ext as _build_ext
81-
# from Cython.Distutils import Extension # to get pyrex debugging symbols
8279
cython = True
8380
except ImportError:
8481
cython = False

0 commit comments

Comments
 (0)