chore(pyproject): modernize Python version and license metadata - #897
Merged
Conversation
List one trove classifier per supported Python version, clamped to the range that requires-python actually admits, and drop the generic "Programming Language :: Python :: 3" / ":: 3 :: Only" rows. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the package’s PyPI trove classifiers to be explicit per supported Python version, aligning metadata with requires-python >=3.11 for distribution/packaging consumers.
Changes:
- Removes the
Programming Language :: Python :: 3 :: Onlyclassifier. - Declares explicit per-version Python classifiers (3.11–3.14) without generic Python 3 classifiers.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
PEP 639 deprecates the "License :: ..." trove classifiers; the license is expressed by the [project] license SPDX expression and license-files instead. Backends implementing PEP 639 reject a project that declares both, so remove the classifier rows. Co-Authored-By: Claude Opus 5 (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.
Modernizes the
[project]metadata inpyproject.toml.Python versions — one explicit trove classifier per supported version instead of the generic
Programming Language :: Python :: 3rows.requires-pythonis 3.11", so the classifiers are: 3.11,3.12,3.13,3.14.License — dropped the
License :: ...classifiers, which PEP 639 deprecates in favour of thelicenseSPDX expression pluslicense-files. Backends implementing PEP 639 reject a project that declares both.Metadata only — no source, dependency, or tooling changes.
🤖 Generated with Claude Code