Skip to content

Commit 5dd6efc

Browse files
authored
DEPS: Bump Cython to 0.29.33 (#51660)
1 parent 13f3824 commit 5dd6efc

13 files changed

+13
-13
lines changed

asv_bench/asv.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
// followed by the pip installed packages).
4343
"matrix": {
4444
"numpy": [],
45-
"Cython": ["0.29.32"],
45+
"Cython": ["0.29.33"],
4646
"matplotlib": [],
4747
"sqlalchemy": [],
4848
"scipy": [],

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66

77
# build dependencies
88
- versioneer[toml]
9-
- cython>=0.29.32
9+
- cython>=0.29.33
1010

1111
# test dependencies
1212
- pytest>=7.0.0

ci/deps/actions-311.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66

77
# build dependencies
88
- versioneer[toml]
9-
- cython>=0.29.32
9+
- cython>=0.29.33
1010

1111
# test dependencies
1212
- pytest>=7.0.0

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77

88
# build dependencies
99
- versioneer[toml]
10-
- cython>=0.29.32
10+
- cython>=0.29.33
1111

1212
# test dependencies
1313
- pytest>=7.0.0

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88

99
# build dependencies
1010
- versioneer[toml]
11-
- cython>=0.29.32
11+
- cython>=0.29.33
1212

1313
# test dependencies
1414
- pytest>=7.0.0

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66

77
# build dependencies
88
- versioneer[toml]
9-
- cython>=0.29.32
9+
- cython>=0.29.33
1010

1111
# test dependencies
1212
- pytest>=7.0.0

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66

77
# build dependencies
88
- versioneer[toml]
9-
- cython>=0.29.32
9+
- cython>=0.29.33
1010

1111
# test dependencies
1212
- pytest>=7.0.0

ci/deps/actions-pypy-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99

1010
# build dependencies
1111
- versioneer[toml]
12-
- cython>=0.29.32
12+
- cython>=0.29.33
1313

1414
# test dependencies
1515
- pytest>=7.0.0

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66

77
# build dependencies
88
- versioneer[toml]
9-
- cython>=0.29.32
9+
- cython>=0.29.33
1010

1111
# test dependencies
1212
- pytest>=7.0.0

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88

99
# build dependencies
1010
- versioneer[toml]
11-
- cython=0.29.32
11+
- cython=0.29.33
1212

1313
# test dependencies
1414
- pytest>=7.0.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
requires = [
55
"setuptools>=61.0.0",
66
"wheel",
7-
"Cython>=0.29.32,<3", # Note: sync with setup.py, environment.yml and asv.conf.json
7+
"Cython>=0.29.33,<3", # Note: sync with setup.py, environment.yml and asv.conf.json
88
"oldest-supported-numpy>=2022.8.16",
99
"versioneer[toml]"
1010
]

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pip
55
versioneer[toml]
6-
cython==0.29.32
6+
cython==0.29.33
77
pytest>=7.0.0
88
pytest-cov
99
pytest-xdist>=2.2.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def is_platform_mac():
3737

3838

3939
# note: sync with pyproject.toml, environment.yml and asv.conf.json
40-
min_cython_ver = "0.29.32"
40+
min_cython_ver = "0.29.33"
4141

4242
try:
4343
from Cython import (

0 commit comments

Comments
 (0)