From 163e4e638a938fd230ec7b611fc42574629d3a8c Mon Sep 17 00:00:00 2001 From: Ivan Mitrichev Date: Sun, 25 Oct 2015 01:13:01 +0300 Subject: [PATCH] Cython minimum version is 0.19 Resolves #302. --- SConstruct | 2 +- doc/sphinx/compiling.rst | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/SConstruct b/SConstruct index 7b660e9e0..6b9043e17 100644 --- a/SConstruct +++ b/SConstruct @@ -929,7 +929,7 @@ if env['VERBOSE']: env['python_cmd_esc'] = quoted(env['python_cmd']) # Python 2 Package Settings -cython_min_version = LooseVersion('0.17') +cython_min_version = LooseVersion('0.19') env['install_python2_action'] = '' if env['python_package'] == 'new': env['python_package'] = 'full' # Allow 'new' as a synonym for 'full' diff --git a/doc/sphinx/compiling.rst b/doc/sphinx/compiling.rst index 4c42717db..21da4e913 100644 --- a/doc/sphinx/compiling.rst +++ b/doc/sphinx/compiling.rst @@ -42,7 +42,7 @@ Linux * Checking out the source code from version control requires Git (install ``git``). -* The minimum compatible Cython version is 0.17. If your distribution does not +* The minimum compatible Cython version is 0.19. If your distribution does not contain a suitable version, you may be able to install a more recent version using `easy_install` or `pip`. @@ -441,9 +441,8 @@ Optional Programs * `Cython `_ - * Required to build the Python module - * Known to work with versions 0.19 and 0.20. Expected to work with - versions >= 0.17. + * Required version >=0.19 to build the Python module + * Known to work with versions 0.19 and 0.20. * Tested with Python 2.7, 3.3, and 3.4. Expected to work with versions 2.6 and 3.1+ as well.