Skip to content

Commit 47bdc8b

Browse files
tacioclaude
andcommitted
Add local uv.toml to override exclude-newer for Mojo 1.0.0b2 toolchain
The global uv config sets exclude-newer = "30 days", which filters out the pinned mojo==1.0.0b2 toolchain and its Modular deps (all published 2026-06-18), breaking the documented `uv pip install "mojo==1.0.0b2"` flow. Override the cutoff per-package so the install resolves without extra flags. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 4ca2f0e commit 47bdc8b

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

uv.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# The global uv config sets `exclude-newer = "30 days"`, which filters out the
2+
# pinned Mojo 1.0.0b2 toolchain (and its Modular deps), all published 2026-06-18.
3+
# Override the cutoff per-package so `uv pip install "mojo==1.0.0b2"` resolves
4+
# without extra flags. Bump these dates if the pin moves to a newer build.
5+
[exclude-newer-package]
6+
mojo = "2026-06-19"
7+
mojo-compiler = "2026-06-19"
8+
mojo-compiler-mojo-libs = "2026-06-19"
9+
mojo-lldb-libs = "2026-06-19"
10+
mblack = "2026-06-19"

0 commit comments

Comments
 (0)