summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-12-23 14:56:47 -0700
committerCharles Harris <charlesr.harris@gmail.com>2019-12-23 15:35:03 -0700
commita7928319d264871a5d95b39ab334884501992676 (patch)
treed08d5b5caf065cb2e47c58763854c1a7970ba1b9
parent42bd6db6ecfdb0b91e5d08ff587ad9af6d5f42d4 (diff)
downloadnumpy-a7928319d264871a5d95b39ab334884501992676.tar.gz
MAINT: Update required cython version to 0.29.14.
This is needed for the latest fixes for Python 3.8.
-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(