Cython minimum version is 0.19

Also, setuptools is required to build/install the python module.

Resolves #302.
This commit is contained in:
Ivan Mitrichev 2015-10-25 01:13:01 +03:00 committed by Ray Speth
parent 2e79a0978e
commit 02fc127c13
2 changed files with 5 additions and 6 deletions

View file

@ -941,7 +941,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'

View file

@ -37,12 +37,12 @@ Linux
* Building the python module also requires::
cython python-dev python-numpy python-numpy-dev
cython python-dev python-numpy python-numpy-dev python-setuptools
* 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`.
@ -438,9 +438,8 @@ Optional Programs
* `Cython <http://cython.org/>`_
* 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.