Skip to content

Commit e115f25

Browse files
authored
Merge pull request #308 from abergeron/largest_block
Bump the required version of cython for the dict change.
2 parents d53f327 + 22504eb commit e115f25

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Build Requirements
2121
- (optional) libcheck (check_) to run the C tests.
2222
- (optional) python (python_) for the python bindings.
2323
- (optional) mako (mako_) for development or running the python bindings.
24-
- (optional) Cython >= 0.21 (cython_) for the python bindings.
24+
- (optional) Cython >= 0.25 (cython_) for the python bindings.
2525
- (optional) nosetests (nosetests_) to run the python tests.
2626

2727
Run Requirements

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)