COG-5962 chore: remove stale poetry artifacts, migrate eval Dockerfile to uv (supersedes #3496) - #4222
Open
Vasilije1990 wants to merge 3 commits into
Open
COG-5962 chore: remove stale poetry artifacts, migrate eval Dockerfile to uv (supersedes #3496)#4222Vasilije1990 wants to merge 3 commits into
Vasilije1990 wants to merge 3 commits into
Conversation
- Deleted obsolete `poetry.lock` and `tools/check-lockfile.py` - Migrated `cognee/eval_framework/Dockerfile` from poetry to uv to match the rest of the project - Cleaned up obsolete poetry mentions in README.md and CLAUDE.md
…step - eval_framework/Dockerfile: uv sync installs into /app/.venv, unlike the old 'poetry config virtualenvs.create false' flow which used the system interpreter - export VIRTUAL_ENV and prepend .venv/bin to PATH so plain python still sees the dependencies. Drop PIP_NO_CACHE_DIR (pip no longer used). - .github/docs/release.md: drop the now-dangling poetry.lock release step. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #3496 (by @Shrinet82 for #3495, WeMakeDevs hackathon) — the original fork branch went stale against
mainand was then retargeted todev; this rebuilds it as a clean 2-commit branch offdev. The first commit is @Shrinet82's, authorship preserved — credit for the cleanup is theirs.Changes
poetry.lock(16,591 lines) — stale since the uv migration; nothing consumes it.tools/check-lockfile.py— hardcoded to check poetry.lock; no CI workflow references it.cognee/eval_framework/Dockerfile→ uv:ghcr.io/astral-sh/uv:python3.11-bookworm-slimbase,uv sync --frozen --no-install-projectwith BuildKit cache, matching the main Dockerfile / Dockerfile.ci.uv syncinstalls into/app/.venv, unlike the oldpoetry config virtualenvs.create falseflow which used the system interpreter —VIRTUAL_ENVis now exported and.venv/binprepended toPATH, otherwise plainpythonin the image finds no dependencies..github/docs/release.md.Verified: no remaining references to the deleted files anywhere in
.github/ortools/(tools/poetry-deps.shis misnamed — it's an__init__.pystructure checker, unrelated to poetry — and is left alone).Closes #3495
🤖 Generated with Claude Code