chore: hatchling/hatch-vcs dynamic versioning, release CI, Makefile, and dev docs#16
Open
chore: hatchling/hatch-vcs dynamic versioning, release CI, Makefile, and dev docs#16
Conversation
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
langgraph-prebuilt 1.0.13 imports `ExecutionInfo` from `langgraph.runtime`, a symbol introduced after 1.0.5. The previous strict pin caused an ImportError at test-collection time. Resolved to 1.1.10. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Consolidate graphcore's CI into a single workflow and adopt uv-native publishing
to the Certora private PyPI (AWS CodeArtifact).
Changes
.github/workflows/ci.yml) replacingpyright.yml,pytest.yml, andrelease.yml. Flow:build_package → tests → codeartifact_pypi_upload.testsdownloads the wheel artifact and installs it (uv pip install --force-reinstall --no-deps dist/*.whl),so CI exercises the built package, not editable source.
pytestandpyrightrun as steps in thetestsjob withif: success() || failure()so a failure in one doesn't skip the other.
main/masterorv*.*.*tags, gated on tests passing.uv publish --index certorareplacesuvx twine uploadand theaws codeartifact get-repository-endpointlookup. The publish/check URLscome from a new
[[tool.uv.index]]block inpyproject.toml(withexplicit = true, so public PyPI stays the default for resolution).# vX.Y.Zcomment..github/dependabot.yml) added — weekly grouped bumps forGitHub Actions (keeps the SHA pins fresh).
contents: read, with per-job grants(
id-token: writefor AWS OIDC,contents: writeonly for the release job).pytestandpyrighttargets running throughuv run,so CI and local dev share the same entrypoints.
(
uv tool install→certora-cloud login→codeartifacts login).requirements.txt(duplicateduv.lock).Potential future plans
More information about prefix etc https://github.com/Certora/certora-python-cookiecutter