Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[build-system]
requires = ['setuptools>=77.0', 'Cython>=3.0.8', "poetry-core>=2.1.0"]
# Cython is pinned to the version in poetry.lock so release wheels are built
# with the exact, tested compiler. cibuildwheel resolves build-system.requires
# from PyPI in an isolated env (it ignores poetry.lock), so an unbounded spec
# lets each release silently pick up whichever Cython is newest at build time,
# producing drifting C output. Bump this in lockstep with the dev dependency.
requires = ['setuptools>=77.0', 'Cython==3.2.5', "poetry-core>=2.1.0"]
build-backend = "poetry.core.masonry.api"

[project]
Expand Down
Loading