Skip to content

Commit

Permalink
MAINT: Update Cython version to 0.29.29.
Browse files Browse the repository at this point in the history
Adapted backport of #21514.
  • Loading branch information
charris committed May 17, 2022
1 parent 5305a17 commit cffe44d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ requires = [
"packaging==20.5; platform_machine=='arm64'", # macos M1
"setuptools==59.2.0",
"wheel==0.37.0",
"Cython>=0.29.24,<3.0", # Note: keep in sync with tools/cythonize.py
"Cython>=0.29.29,<3.0", # Note: keep in sync with tools/cythonize.py
]


Expand Down
2 changes: 1 addition & 1 deletion test_requirements.txt
@@ -1,4 +1,4 @@
cython==0.29.24
cython==0.29.29
wheel==0.37.0
setuptools==59.2.0
hypothesis==6.24.1
Expand Down
2 changes: 1 addition & 1 deletion tools/cythonize.py
Expand Up @@ -67,7 +67,7 @@ def process_pyx(fromfile, tofile):
# Python versions.
# Note: keep in sync with that in pyproject.toml
# Update for Python 3.10
required_version = LooseVersion('0.29.24')
required_version = LooseVersion('0.29.29')

if LooseVersion(cython_version) < required_version:
cython_path = Cython.__file__
Expand Down

0 comments on commit cffe44d

Please sign in to comment.