Skip to content
Closed
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>=80", "wheel", "setuptools_scm[toml]>=8"]
requires = ["setuptools>=83.0.0", "wheel", "setuptools_scm[toml]>=8"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Build pin breaks Python 3.8

Medium Severity

Raising the build-system pin to setuptools>=83.0.0 requires Python 3.10+ for isolated builds, while setup.py still declares python_requires=">=3.8.1, <4". pip install from an sdist or source tree on Python 3.8 or 3.9 can fail resolving the build backend even though the package metadata still claims those versions are supported.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit f02cf33. Configure here.

build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand Down
Loading