Skip to content
Merged
Show file tree
Hide file tree
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 docs/agents/ANTIGRAVITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ working directory — both required for an unattended eval.
pip install 'coder-eval[antigravity]'
```

This pulls in `google-antigravity` (pinned to `0.1.7`), whose wheel bundles the
This pulls in `google-antigravity` (pinned to `0.1.8`), whose wheel bundles the
platform `localharness` binary. As with the other agents the SDK is imported lazily
— a base install without the extra still runs end-to-end; Antigravity tasks fail at
dispatch with a clear hint to install the extra.
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ codex = [
# glibc note — verify before bumping: the wheel's manylinux_2_17 tag is NOT a
# reliable floor; the bundled `localharness` ELF can require a newer glibc than the
# tag advertises. Eval agents run on Ubuntu 22.04 (glibc 2.35), so the pinned build
# must load there. 0.1.7 links without DT_RELR (max required symbol GLIBC_2.26) and
# loads on 2.35+; confirm any future pin does too (readelf -d | grep RELR must be
# empty / max GLIBC symbol <= the oldest target's glibc).
# must load there. 0.1.8 links without DT_RELR (max required symbol GLIBC_2.26, and
# the same DT_NEEDED set as 0.1.7) and loads on 2.35+; confirm any future pin does
# too (readelf -d | grep RELR must be empty / max GLIBC symbol <= the oldest
# target's glibc). Note 0.1.16+ ships a fully STATIC localharness (no PT_INTERP, no
# DT_NEEDED — hence its added musllinux tag), which retires this check entirely.
# Without this extra the framework still installs and runs; Antigravity-dependent
# code paths fail at start() with a clear hint pointing back here.
antigravity = [
"google-antigravity==0.1.7",
"google-antigravity==0.1.8",
]
# Optional extra that enables OpenCode agent support.
#
Expand Down
14 changes: 7 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading