mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-12-26 17:12:08 -05:00
📦 Only keep lower bounds @ input requirements
This concerns both direct (`twine`) and indirect (`pkginfo`) deps, provided there's no broken versions to exclude.
This commit is contained in:
parent
cbd6d01d85
commit
67339c736f
2 changed files with 3 additions and 2 deletions
|
@ -17,4 +17,4 @@
|
|||
# NOTE: 1.12.0 and later enable support for metadata 2.4
|
||||
# NOTE: This can be dropped once twine stops using pkginfo
|
||||
# Ref: https://github.com/pypa/twine/pull/1180
|
||||
pkginfo ~= 1.12.0
|
||||
pkginfo >= 1.12.0
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
-c runtime-constraints.in # limits known broken versions
|
||||
|
||||
twine ~= 6.0
|
||||
# NOTE: v6 is needed to support metadata v2.4
|
||||
twine >= 6.0
|
||||
|
||||
# NOTE: Used to detect an ambient OIDC credential for OIDC publishing,
|
||||
# NOTE: as well as PEP 740 attestations.
|
||||
|
|
Loading…
Reference in a new issue