summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-12-24 05:43:17 +0100
committerGitHub <noreply@github.com>2019-12-24 05:43:17 +0100
commit22046945fdab20aa4e135cc9029179984a545927 (patch)
tree59dbb714929322ef0502d829b313e09d837a3bb8
parenteba2597383a6299ca58823ca8e12175bb87e40f7 (diff)
parenta7928319d264871a5d95b39ab334884501992676 (diff)
downloadnumpy-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.txt2
-rw-r--r--pyproject.toml2
-rwxr-xr-xtools/cythonize.py4
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(