Skip to content

Commit 55e33db

Browse files
lithomas1yehoshuadimarsky
authored andcommitted
DEPS: Bump Cython (pandas-dev#47150)
1 parent db78836 commit 55e33db

11 files changed

+11
-11
lines changed

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
- python=3.10
66

77
# test dependencies
8-
- cython=0.29.24
8+
- cython=0.29.30
99
- pytest>=6.0
1010
- pytest-cov
1111
- pytest-xdist>=1.31

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
- python=3.8
77

88
# test dependencies
9-
- cython=0.29.24
9+
- cython=0.29.30
1010
- pytest>=6.0
1111
- pytest-cov
1212
- pytest-xdist>=1.31

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77
- python=3.8.0
88

99
# test dependencies
10-
- cython=0.29.24
10+
- cython=0.29.30
1111
- pytest>=6.0
1212
- pytest-cov
1313
- pytest-xdist>=1.31

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
- python=3.8
66

77
# test dependencies
8-
- cython=0.29.24
8+
- cython=0.29.30
99
- pytest>=6.0
1010
- pytest-cov
1111
- pytest-xdist>=1.31

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
- python=3.9
66

77
# test dependencies
8-
- cython=0.29.24
8+
- cython=0.29.30
99
- pytest>=6.0
1010
- pytest-cov
1111
- pytest-xdist>=1.31

ci/deps/actions-pypy-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- python=3.8[build=*_pypy] # TODO: use this once pypy3.8 is available
99

1010
# tools
11-
- cython>=0.29.24
11+
- cython>=0.29.30
1212
- pytest>=6.0
1313
- pytest-cov
1414
- pytest-asyncio

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
- python=3.8
66

77
# test dependencies
8-
- cython=0.29.24
8+
- cython=0.29.30
99
- pytest>=6.0
1010
- pytest-cov
1111
- pytest-xdist>=1.31

doc/source/whatsnew/v1.4.3.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Bug fixes
3838

3939
Other
4040
~~~~~
41-
-
41+
- The minimum version of Cython needed to compile pandas is now ``0.29.30`` (:issue:`41935`)
4242
-
4343

4444
.. ---------------------------------------------------------------------------

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies:
1515
# The compiler packages are meta-packages and install the correct compiler (activation) packages on the respective platforms.
1616
- c-compiler
1717
- cxx-compiler
18-
- cython>=0.29.24
18+
- cython>=0.29.30
1919

2020
# code checks
2121
- black=22.3.0

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ numpy>=1.18.5
55
python-dateutil>=2.8.1
66
pytz
77
asv
8-
cython>=0.29.24
8+
cython>=0.29.30
99
black==22.3.0
1010
cpplint
1111
flake8==4.0.1

setup.py

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

3939

4040
# note: sync with pyproject.toml, environment.yml and asv.conf.json
41-
min_cython_ver = "0.29.24"
41+
min_cython_ver = "0.29.30"
4242

4343
try:
4444
from Cython import (

0 commit comments

Comments
 (0)