Skip to content

Commit 20da380

Browse files
julian-rischclaude
andcommitted
fix(llama_stack): use far-future date for UV_EXCLUDE_NEWER instead of empty string
Empty string is not a valid uv exclude-newer value. Using 2099-01-01 sets the cutoff so far in the future that no existing package can be newer than it, effectively disabling the restriction for this step without breaking uv's argument parsing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 1c42e9a commit 20da380

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/llama_stack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
# torch's transitive dep sympy has missing upload dates on the PyTorch wheel index;
113113
# uv falls back to the request timestamp which triggers the exclude-newer cutoff.
114114
# Disable exclude-newer for this step only to allow torch resolution.
115-
UV_EXCLUDE_NEWER: ""
115+
UV_EXCLUDE_NEWER: "2099-01-01"
116116
shell: bash
117117
run: |
118118
set -euo pipefail

0 commit comments

Comments
 (0)