From d166096b612b487e30f47652869c4c96a6b1f4ae Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Fri, 6 Dec 2024 14:50:49 +0100 Subject: [PATCH] Add id to requirements shown with --version --- twine/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twine/cli.py b/twine/cli.py index 6ff60d4d..f44426e3 100644 --- a/twine/cli.py +++ b/twine/cli.py @@ -81,6 +81,7 @@ def list_dependencies_and_versions() -> List[Tuple[str, str]]: "requests", "requests-toolbelt", "urllib3", + "id", ] if sys.version_info < (3, 10): deps.append("importlib-metadata")