Require Python 3.11, matching the llmdojo floor - #28
Open
chaosisnotrandomitisrhythmic wants to merge 1 commit into
Open
chaosisnotrandomitisrhythmic wants to merge 1 commit into
chaosisnotrandomitisrhythmic wants to merge 1 commit into
Conversation
`requires-python = ">=3.10"` while the sole runtime dependency, `llmdojo>=0.0.3`,
requires `>=3.11`. uv resolves across the whole declared range, so it fails on
the 3.10 leg before it ever reaches the interpreter in use:
Because the requested Python version (>=3.10) does not satisfy Python>=3.11
and llmdojo>=0.0.3 depends on Python>=3.11, we can conclude that
llmdojo>=0.0.3 cannot be used.
That makes `uv run pytest` unusable on a clean checkout even on 3.13. With the
floor corrected the environment builds and `tests/test_harness.py` passes.
`tests/test_looker.py` still fails to import, but for an unrelated reason:
`aai_coding/looker.py` imports `Quartz`, which is not among the declared
dependencies. Left alone here.
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.
One character.
requires-python = ">=3.10"while the sole runtime dependency,llmdojo>=0.0.3, requires>=3.11.uv resolves across the whole declared range, so it fails on the 3.10 leg before it ever reaches the interpreter actually in use. On a clean checkout with Python 3.13:
uv run pytestis therefore unusable on a fresh clone. With the floor corrected the environment builds andtests/test_harness.pypasses:One thing this does not fix
tests/test_looker.pystill fails to import, for an unrelated reason:Quartz(pyobjc) is not among the declared dependencies. Left alone here since it is a separate question, and macOS-only, so it may want an extra rather than a hard dependency.🤖 Generated with Claude Code