Package updates and copyright year#55
Merged
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates project metadata and tooling to target Python 3.11+ only, switches from dynamic to explicit runtime dependencies, refreshes dev/test tooling versions, removes Hatch requirements-txt integration and legacy requirements.txt, and refreshes license files (including copyright year). Flow diagram for updated dependency management and Python version supportflowchart LR
subgraph Before
A_pyproject[pyproject.toml
- dynamic dependencies
- requires-python >=3.9
- hatch-requirements-txt backend dep]
B_requirements[requirements.txt
- runtime dependencies]
C_hatch_hook[hatch.metadata.hooks.requirements_txt
- reads requirements.txt]
D_build_backend_before[hatchling.build]
A_pyproject --> C_hatch_hook
B_requirements --> C_hatch_hook
C_hatch_hook --> D_build_backend_before
end
subgraph After
E_pyproject[pyproject.toml
- explicit dependencies list
- requires-python >=3.11
- no hatch-requirements-txt]
F_build_backend_after[hatchling.build]
E_pyproject --> F_build_backend_after
end
Before --> After
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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 by Sourcery
Update packaging configuration and minimum supported Python version while modernizing dependencies and tooling targets.
Enhancements:
Build: