File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Performance Improvements
33
33
Bug Fixes
34
34
~~~~~~~~~
35
35
36
-
36
+ - Compat with Cython 0.25 for building (:issue:`14496`)
37
37
38
38
39
39
- Bug in localizing an ambiguous timezone when a boolean is passed (:issue:`14402`)
Original file line number Diff line number Diff line change @@ -85,7 +85,11 @@ def is_platform_mac():
85
85
try :
86
86
if not _CYTHON_INSTALLED :
87
87
raise ImportError ('No supported version of Cython installed.' )
88
- from Cython .Distutils import build_ext as _build_ext
88
+ try :
89
+ from Cython .Distutils .old_build_ext import old_build_ext as _build_ext
90
+ except ImportError :
91
+ # Pre 0.25
92
+ from Cython .Distutils import build_ext as _build_ext
89
93
cython = True
90
94
except ImportError :
91
95
cython = False
You can’t perform that action at this time.
0 commit comments