Skip to content

Commit ef5046b

Browse files
committed
Bump the required version of cython for the dict change.
1 parent 637783a commit ef5046b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
try:
1313
import Cython
14-
if Cython.__version__ < '0.21':
14+
if Cython.__version__ < '0.25':
1515
raise Exception('cython is too old or not installed '
16-
'(at least 0.21 required)')
16+
'(at least 0.25 required)')
1717
from Cython.Build import cythonize
1818
have_cython = True
1919
except Exception:

0 commit comments

Comments
 (0)