fix: move agent-os-kernel to optional dep, correct version constraint - #120
Closed
imran-siddique wants to merge 1 commit into
Closed
fix: move agent-os-kernel to optional dep, correct version constraint#120imran-siddique wants to merge 1 commit into
imran-siddique wants to merge 1 commit into
Conversation
agent-os-kernel is imported with try/except ImportError in scanner.py and has a graceful no-op fallback — it was never a hard requirement. The version constraint >=4.0 is also wrong: 4.0 does not exist (latest is 3.7.0), causing pip install to fail on all CI matrix combinations. Moves it to [project.optional-dependencies] as: - �gt extra: for users who want AGT catalog scanning - dev: so CI exercises the scanner path in tests Fixes all 6 failing CI jobs from PR #114. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2 tasks
Member
Author
|
Superseded by #121. Making agent-os-kernel optional is not viable — proxy.py has hard top-level imports from agent_os.* so the gateway fails to start without it. #121 uses agent-os-kernel>=3.7 as a hard dep (the correct version constraint) and also fixes the AGT 3.7 API incompatibilities in tests and schema. |
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.
Root cause
\�gent-os-kernel>=4.0\ was declared as a hard dependency in \pyproject.toml, but:
This caused \pip install -e '.[dev]'\ to fail on every CI matrix combination, blocking all 6 jobs.
Fix
Test plan
🤖 Generated with Claude Code