Skip to content

Commit 147a593

Browse files
julian-rischclaude
andcommitted
fix: exempt sympy from exclude-newer to fix llama_stack CI
sympy packages on the PyTorch wheel index are missing upload dates; uv falls back to the request timestamp which lands within the 24h window, causing torch (which requires sympy>=1.13.3 for cp314 support) to become unresolvable. Setting sympy = "0 days" disables the cutoff for this package. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 848c277 commit 147a593

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

uv.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
# attacks via compromised dependencies. uv resolves this relative to the current clock at
33
# install/lock time, so no manual date updates are needed.
44
exclude-newer = "24 hours"
5+
# sympy's upload dates are missing from the PyTorch wheel index; uv falls back to the request
6+
# timestamp, causing false-positive exclusions. Exempt it to keep torch resolvable.
7+
exclude-newer-package = { sympy = "0 days" }

0 commit comments

Comments
 (0)