release: 0.1.1 - #37
Merged
Merged
Conversation
`[tool.hatch.version]` reads `__version__` from `src/ml4t/diagnostic/__init__.py` rather than from the git tag, so tagging alone rebuilds the previous version and PyPI rejects the upload with "400 File already exists". That is what happened to the first v0.1.1 tag: the build produced ml4t_diagnostic-0.1.0 and the publish step failed after every test and audit job had passed. The tag has been deleted and will be recreated on this commit. 0.1.1 carries the session-grid fix for unordered timestamps and the gap-preserving `missing="conservative"` ACF, both merged in #34.
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.
Bumps
__version__to 0.1.1 so the release tag builds the version it names.[tool.hatch.version]readspath = "src/ml4t/diagnostic/__init__.py", not the git tag, so tagging alone rebuilds the previous version. The firstv0.1.1tag did exactly that: every test and audit job passed,Build Packageproducedml4t_diagnostic-0.1.0, andPublish to PyPIfailed with400 File already exists. The tag has been deleted and will be recreated on this commit.0.1.1 carries #34: the session grid derived from the timestamp span rather than the endpoints, and
missing="conservative"reaching statsmodels with its gaps intact.Worth considering separately:
ml4t-engineerusessource = "vcs"and derives its version from the tag, so this class of failure cannot happen there. Aligning the two would remove the manual step.