Skip to content

Commit

Permalink
fix: update twine to address importlib-metadata issue
Browse files Browse the repository at this point in the history
Update twine to version 5.1.1 or higher to address a bug stemming from
twine's reliance on deprecated behavior, which was removed from
importlib-metadata in version 8.0.0.
For more details, see:
- python/importlib_metadata@a970a49
- pypa/twine#977

The plugin currently uses twine version 4.0.2, which depends on the
latest version of importlib-metadata (>= 3.6).
Consequently, it is impacted by the breaking changes introduced in
importlib-metadata version 8.0.0.

This issue has been resolved in twine version 5.1.1, as detailed here:
pypa/twine#1124.
  • Loading branch information
kimberninger committed Jun 27, 2024
1 parent 7734f08 commit 43a3c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/py/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pip~=23.2
build~=1.0
setuptools~=68.2
twine~=4.0
twine>=5.1.1,<6
tomlkit~=0.12
packaging~=24.0

0 comments on commit 43a3c53

Please sign in to comment.