feat: make Pointer public and bump minimal Python to 3.12#16
Merged
szymonmaszke merged 2 commits intomainfrom Nov 5, 2025
Merged
feat: make Pointer public and bump minimal Python to 3.12#16szymonmaszke merged 2 commits intomainfrom
szymonmaszke merged 2 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates the minimum supported Python version from 3.11 to 3.12 and modernizes the codebase to leverage Python 3.12+ features. The key changes include adopting the new generic type parameter syntax for the Value class and exposing the Pointer class as part of the public API.
- Modernized
Valueclass to use Python 3.12+ PEP 695 generic syntax (class Value[T]) - Exposed
Pointerclass in the public API via__all__export - Updated Python version support to 3.12-3.14 across project configuration and CI/CD workflows
Reviewed Changes
Copilot reviewed 11 out of 12 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/lintkit/_value.py | Modernized Value class to use PEP 695 generic syntax and clarified Pointer documentation |
| src/lintkit/init.py | Added Pointer to public API exports |
| pyproject.toml | Updated minimum Python version to 3.12 and added Python 3.14 support across all configurations |
| osv-scanner.toml | Added license ignore overrides for dev dependencies |
| .pre-commit-config.yaml | Updated pre-commit hook versions |
| .github/workflows/tests-reusable.yml | Updated test matrix to Python 3.12-3.14 |
| .github/workflows/run-reusable.yml | Updated default Python version to 3.12 |
| .github/workflows/release-sboms-reusable.yml | Updated SBOM generation matrix to Python 3.12-3.14 |
| .github/workflows/release-sbom-run-reusable.yml | Updated default Python version to 3.12 |
| .github/workflows/cache-reusable.yml | Updated cache matrix to Python 3.12-3.14 |
| .github/workflows/cache-item-reusable.yml | Updated default Python version to 3.12 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: szymonmaszke <github@maszke.co>
Signed-off-by: szymonmaszke <github@maszke.co>
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.
Checklist