Conversation
…consistency Co-authored-by: daedalus <115175+daedalus@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix versioning and package name issues in agp_tool
Fix versioning, CLI naming, config validation, and dependency consistency
Feb 24, 2026
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.
Multiple small but compounding issues: hardcoded
__version__drifting from the distribution,importlib.metadataquerying the wrong package name (agpvsagp_tool), missingagp_toolCLI entry point, pinnednumpy==1.22inrequirements.txtconflicting withpyproject.toml, and silent clamping of invalid config values instead of failing loudly.Versioning
agp/__init__.pyandagp/cli.pynow both derive__version__viaimportlib.metadata.version("agp_tool")— single source of truth from the distribution metadata"unknown"instead of a stale hardcoded stringCLI entry point
agp_tool = "agp.main:main"to[project.scripts]— aligns with README examples;agpkept as aliasDependencies
requirements.txt:numpy==1.22→numpy>=1.21.0to matchpyproject.tomlConfig validation (
agp/config.py)Replaced silent clamping with explicit
ValueError:Tests
test_config.pytests that asserted the old clamping behavior; added 8 new validation testsCI
python -m pip install --upgrade pipandcache: pipto bothtests.ymlandlint.ymlOriginal prompt
This pull request was created from Copilot chat.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.