We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550e3ac commit e49c1faCopy full SHA for e49c1fa
.github/workflows/gh-ci.yaml
@@ -92,6 +92,8 @@ jobs:
92
full-deps: ${{ matrix.full-deps }}
93
# disable GSD because it occasionally introduce hanging in testing #4209
94
gsd: ''
95
+ # pin cython
96
+ cython: 'cython<3.1'
97
# in most cases will just default to empty, i.e. pick up max version from other deps
98
numpy: ${{ matrix.numpy }}
99
extra-pip-deps: ${{ matrix.extra-pip-deps }}
package/pyproject.toml
@@ -1,7 +1,7 @@
1
[build-system]
2
# Minimum requirements for the build system to execute
3
requires = [
4
- "Cython>=0.28",
+ "Cython>=0.28,<3.1",
5
"packaging",
6
# numpy requirement for wheel builds for distribution on PyPI - building
7
# against 2.x yields wheels that are also compatible with numpy 1.x at
0 commit comments