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 envs/kernrl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# LICENSE file in the root directory of this source tree.

[build-system]
requires = ["setuptools>=45", "wheel"]
requires = ["setuptools>=83.0.0", "wheel"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Security-positive and correctly targeted. This is a PEP 518 build-backend requirement, and setuptools <83.0.0 carries CVE-2026-59890 / GHSA-h35f-9h28-mq5c (fixed in 83.0.0): FileList applies MANIFEST.in exclude/global-exclude/recursive-exclude/prune directives without Unicode normalization, so on macOS APFS/HFS+ an NFD filename can bypass an NFC exclusion and get packed into an sdist. Bumping [build-system].requires (not a runtime dep) hits exactly the affected code path.

Verified:

  • setuptools 83.0.0 on PyPI: not yanked, requires_python >=3.10 (satisfies kernrl requires-python = ">=3.10"), 0 known vulns.
  • No uv.lock change is correct — PEP 518 build requires aren't tracked in uv.lock; uv lock --check --project envs/kernrl passes at HEAD.
  • uv build --wheel envs/kernrl builds a valid wheel using an isolated build env satisfying >=83.0.0.

Minor: floor jumps >=45>=83.0.0 (dependabot's strategy). The runtime transitive setuptools 81.0.0 (via torch) in the lock is intentionally unchanged and not an exposure for this build-time CVE.

build-backend = "setuptools.build_meta"

[project]
Expand Down
Loading