We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27475f9 commit aad7d3dCopy full SHA for aad7d3d
setuptools/tests/config/test_apply_pyprojecttoml.py
@@ -502,6 +502,8 @@ def core_metadata(dist) -> str:
502
skip_prefixes += ("Description-Content-Type:",)
503
# Remove empty lines
504
skip_lines.add("")
505
+ # TODO: Mark static values coming from pyproject.toml with `_static.*`
506
+ skip_prefixes += ("Dynamic:",)
507
508
result = []
509
for line in pkg_file_txt.splitlines():
setuptools/tests/test_core_metadata.py
@@ -462,6 +462,9 @@ def _normalize_metadata(msg: Message) -> str:
462
for extra in sorted(extras):
463
msg["Provides-Extra"] = extra
464
465
+ # TODO: Handle lack of PEP 643 implementation in pypa/wheel?
466
+ del msg["Metadata-Version"]
467
+
468
return msg.as_string()
469
470
0 commit comments