Skip to content

Release v0.1.17

Highlights

  • CI/release installer repair: package metadata now matches LiteLLM's pinned dependency requirements so GitHub Actions can install the backend with pip install -e ".[dev]".

Fixes

  • Pinned httpx to 0.28.1, matching LiteLLM 1.83.x.
  • Pinned python-dotenv to 1.0.1, matching LiteLLM 1.83.7.
  • Removed the uv-only python-dotenv override so local lockfile resolution and CI pip resolution use the same package contract.

Verification

  • backend/agent/.venv/bin/python -m pip install -e "backend/agent[dev]" succeeded locally as a CI install reproduction.
  • backend/agent/.venv/bin/python -m pytest -q backend/agent/tests passed with 454 tests.
  • python -m ruff check backend/agent/g_agent backend/agent/tests --select F passed.
  • python -m compileall -q backend/agent/g_agent passed.
  • mkdocs build --strict passed.

Notes

  • The previous v0.1.16 tag was pushed before this CI installer fix and triggered failing backend install checks. This patch release avoids rewriting the existing tag.