summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build_test.yml2
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py4
-rw-r--r--test_requirements.txt2
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index db7883ab9..1def3acae 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -253,7 +253,7 @@ jobs:
docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:focal /bin/bash -c "
apt update &&
apt install -y git python3 python3-dev python3-pip &&
- pip3 install cython==0.29.28 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 &&
+ pip3 install cython==0.29.29 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 &&
ln -s /host/lib64 /lib64 &&
ln -s /host/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu &&
ln -s /host/usr/arm-linux-gnueabihf /usr/arm-linux-gnueabihf &&
diff --git a/pyproject.toml b/pyproject.toml
index 5c909aebc..a419dff47 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ requires = [
"packaging==20.5; platform_machine=='arm64'", # macos M1
"setuptools==59.2.0",
"wheel==0.37.0",
- "Cython>=0.29.28,<3.0", # Note: keep in sync with tools/cythonize.py
+ "Cython>=0.29.29,<3.0", # Note: keep in sync with tools/cythonize.py
]
diff --git a/setup.py b/setup.py
index e22349329..e5800fbea 100755
--- a/setup.py
+++ b/setup.py
@@ -258,8 +258,8 @@ def generate_cython():
raise OSError(msg) from e
else:
# Note: keep in sync with that in pyproject.toml
- # Update for Python 3.10
- required_version = '0.29.24'
+ # Update for Python 3.11
+ required_version = '0.29.29'
if _pep440.parse(cython_version) < _pep440.Version(required_version):
cython_path = Cython.__file__
diff --git a/test_requirements.txt b/test_requirements.txt
index 05c83c050..cfef4afdb 100644
--- a/test_requirements.txt
+++ b/test_requirements.txt
@@ -1,4 +1,4 @@
-cython>=0.29.28,<3.0
+cython>=0.29.29,<3.0
wheel==0.37.0
setuptools==59.2.0
hypothesis==6.24.1