Skip to content

Commit 2287d05

Browse files
authored
upgrade cython
1 parent c31a0c9 commit 2287d05

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/branchbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install Cython==3.0.11
26+
pip install Cython==3.0.12
2727
2828
- name: Generate cython
2929
run: |

.github/workflows/releasebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install pytest hypothesis pandas mypy Cython==3.0.11
25+
pip install pytest hypothesis pandas mypy Cython==3.0.12
2626
2727
# The cythonized files allow installation from the sdist without cython
2828
- name: Generate cython

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Added
77
~~~~~
88
* added wheels for pypy 3.11
99

10+
Changed
11+
~~~~~~~
12+
* upgrade to ``Cython==3.0.12``
13+
1014
[3.12.1] - 2025-01-30
1115
^^^^^^^^^^^^^^^^^^^^^
1216
Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"scikit-build-core>=0.11",
4-
"Cython >=3.0.11, <3.1.0"
4+
"Cython >=3.0.12, <3.1.0"
55
]
66
build-backend = "scikit_build_core.build"
77

tools/sdist.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index 517f32d..1e855ed 100644
66
[build-system]
77
requires = [
88
- "scikit-build-core>=0.11",
9-
- "Cython >=3.0.11, <3.1.0"
9+
- "Cython >=3.0.12, <3.1.0"
1010
+ "scikit-build-core>=0.11"
1111
]
1212
build-backend = "scikit_build_core.build"

0 commit comments

Comments
 (0)