summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-05-04 10:23:03 +0200
committerSebastian Berg <sebastianb@nvidia.com>2023-05-05 15:56:05 +0200
commit2df3b4c26bda892701741a331ad62ba6333446f0 (patch)
tree7b89241412b85d73a21f540415848351413359c4
parent6aca5f6552225a097cb23c875f2b18de86ca7f39 (diff)
downloadnumpy-2df3b4c26bda892701741a331ad62ba6333446f0.tar.gz
MAINT: Update Cython dependency to 0.29.34 (latest 0.29.x).
-rw-r--r--.github/workflows/build_test.yml2
-rw-r--r--build_requirements.txt2
-rw-r--r--pyproject.toml2
-rw-r--r--test_requirements.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index d34b43651..f52c4f3d7 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -365,7 +365,7 @@ jobs:
docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:22.04 /bin/bash -c "
apt update &&
apt install -y git python3 python3-dev python3-pip &&
- python3 -m pip install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 'typing_extensions>=4.2.0' &&
+ python3 -m pip install cython==0.29.34 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 'typing_extensions>=4.2.0' &&
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/build_requirements.txt b/build_requirements.txt
index 075d454f2..de57da279 100644
--- a/build_requirements.txt
+++ b/build_requirements.txt
@@ -1,5 +1,5 @@
meson-python>=0.10.0
-Cython>=0.29.30,<3.0
+Cython>=0.29.34,<3.0
wheel==0.38.1
ninja
spin==0.3
diff --git a/pyproject.toml b/pyproject.toml
index 903a99bca..759b538fb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,7 +9,7 @@ requires = [
# doesn't list it as a runtime requirement (at least in 0.11.0) - it's
# likely to be removed as a dependency in meson-python 0.12.0.
"wheel==0.38.1",
- "Cython>=0.29.30,<3.0",
+ "Cython>=0.29.34,<3.0",
# "meson-python>=0.10.0",
]
diff --git a/test_requirements.txt b/test_requirements.txt
index b8508f161..16f448eb8 100644
--- a/test_requirements.txt
+++ b/test_requirements.txt
@@ -1,4 +1,4 @@
-cython>=0.29.30,<3.0
+cython>=0.29.34,<3.0
wheel==0.38.1
setuptools==59.2.0
hypothesis==6.24.1