Skip to content

Commit 8651908

Browse files
authored
upgrade cython
1 parent 9e5eeee commit 8651908

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/pythonbuild.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install pytest hypothesis mypy Cython==3.0.11
24+
pip install pytest hypothesis mypy Cython==3.0.12
2525
2626
# The cythonized files allow installation from the sdist without cython
2727
- name: Generate cython

HISTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### v0.27.1
44
#### Changed
55
- fix build with ``scikit-build-core`` ``v0.11``
6+
- upgrade to `Cython==3.0.12`
67

78
### v0.27.0
89
#### Fixed

pyproject.toml

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index 0a8c033..cf967b9 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)