diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-12-24 05:43:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-24 05:43:17 +0100 |
commit | 22046945fdab20aa4e135cc9029179984a545927 (patch) | |
tree | 59dbb714929322ef0502d829b313e09d837a3bb8 | |
parent | eba2597383a6299ca58823ca8e12175bb87e40f7 (diff) | |
parent | a7928319d264871a5d95b39ab334884501992676 (diff) | |
download | numpy-22046945fdab20aa4e135cc9029179984a545927.tar.gz |
Merge pull request #15160 from charris/update-cython
MAINT: Update required cython version to 0.29.14.
-rw-r--r-- | INSTALL.rst.txt | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rwxr-xr-x | tools/cythonize.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL.rst.txt b/INSTALL.rst.txt index b33f93683..30f58fa6d 100644 --- a/INSTALL.rst.txt +++ b/INSTALL.rst.txt @@ -20,7 +20,7 @@ Building NumPy requires the following installed software: e.g., on Debian/Ubuntu one needs to install both `python3` and `python3-dev`. On Windows and macOS this is normally not an issue. -2) Cython >= 0.29.13 +2) Cython >= 0.29.14 3) pytest__ (optional) 1.15 or later diff --git a/pyproject.toml b/pyproject.toml index 918cbb278..d81b731d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "setuptools", "wheel", - "Cython>=0.29.13", # Note: keep in sync with tools/cythonize.py + "Cython>=0.29.14", # Note: keep in sync with tools/cythonize.py ] diff --git a/tools/cythonize.py b/tools/cythonize.py index 5bea2d4ec..e5352a954 100755 --- a/tools/cythonize.py +++ b/tools/cythonize.py @@ -68,11 +68,11 @@ def process_pyx(fromfile, tofile): # check the version, and invoke through python from distutils.version import LooseVersion - # Cython 0.29.13 is required for Python 3.8 and there are + # Cython 0.29.14 is required for Python 3.8 and there are # other fixes in the 0.29 series that are needed even for earlier # Python versions. # Note: keep in sync with that in pyproject.toml - required_version = LooseVersion('0.29.13') + required_version = LooseVersion('0.29.14') if LooseVersion(cython_version) < required_version: raise RuntimeError('Building {} requires Cython >= {}'.format( |