Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=82.0.1", "wheel", "setuptools_scm[toml]>=3.5.0", "pybind11>=2.10.0"]
requires = ["setuptools>=82.0.1", "wheel", "setuptools_scm[toml]>=3.5.0", "pybind11>=3.0.4"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pybind11 build requirement mismatch

Medium Severity

The [build-system] entry now requires pybind11>=3.0.4, but the chiapos extension is still compiled via CMake FetchContent pinned to v2.13.6, which is below that floor. Wheels and sdist builds can pass isolation while the native module keeps the older pybind11 headers and ABI.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fd8b4e9. Configure here.

build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand Down
Loading