-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement PEP 643 (Dynamic
field for core metadata)
#4698
Draft
abravalheri
wants to merge
12
commits into
pypa:main
Choose a base branch
from
abravalheri:issue-2685-pep643
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+478
−59
Conversation
This file contains 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
abravalheri
force-pushed
the
issue-2685-pep643
branch
2 times, most recently
from
October 22, 2024 12:38
94a60ef
to
2ea79ce
Compare
2 tasks
@jaraco would this kind of approach be acceptable in setuptools? |
This was referenced Oct 24, 2024
…ad of _static.{Tuple,Mapping} for better compatibility
abravalheri
force-pushed
the
issue-2685-pep643
branch
from
November 11, 2024 18:42
2ea79ce
to
f7b42e4
Compare
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.
IMPORTANT: #4701 needs to be merged first, then this PR needs to be rebased (probably there will be conflicts). It might also be a good idea to wait until the next version of wheel is released (v0.45).
Summary of changes
This PR attempts to implement the 2nd approach suggested in #2685:
Values given via
setup.py
are considered dynamic for the sake of simplicity.The "trick" implemented in this PR to avoid the problems with plugins/customisations described in #4629 (comment), is to mark static values instead of dynamic ones.
This marking is a bit "unconventional" (via subclasses of buit-in types), but it simplifies the tracking of changes and is backward compatible with the existing distutils/setuptools code base.
OPEN PROBLEM:
wheel.metadata.pkginfo_to_metadata
hardcodesMetadata-Version: 2.1
.PKG_INFO
file in setuptools is good enough and obviate usage ofpkginfo_to_metadata
=> Preserve originalPKG-INFO
contents when creating wheel (instead of callingwheel.metadata.pkginfo_to_metadata
) #4701.Closes #2685
Pull Request Checklist
newsfragments/
.(See documentation for details)