Align package version with dignity beta line#40
Open
jmanhype wants to merge 6 commits intoAstroPilot-AI:masterfrom
Open
Align package version with dignity beta line#40jmanhype wants to merge 6 commits intoAstroPilot-AI:masterfrom
jmanhype wants to merge 6 commits intoAstroPilot-AI:masterfrom
Conversation
Author
|
Verified locally. This PR is clean and mergeable, and should be merged before AstroPilot-AI/DenarioApp#11 because the app PR depends on the beta package metadata exposed here. |
Author
|
Verified locally. This PR is clean and mergeable, and should be merged before AstroPilot-AI/DenarioApp#11 because the app PR depends on the 1.1 beta package metadata exposed 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.
Summary
1.1.0b6to match the dignity-oriented feature line already on this branchappextra to require the compatible DenarioApp betaWhy
The library branch already contains authorship confirmation, researcher statement support, and compare-before-converge branching. Keeping
pyproject.tomlat1.0.1makes the packaging metadata lie about the available API surface and breaks the new Streamlit UI dependency chain.Related app PR: AstroPilot-AI/DenarioApp#11
Verification
python3 - <<'PY'import tomllibwith open('pyproject.toml', 'rb') as f:data = tomllib.load(f)print(data['project']['version'])print(data['project']['optional-dependencies']['app'])PY