From 2f0df3dab4ba6e65dbdb77b83ab0e11d8a7a8a1f Mon Sep 17 00:00:00 2001 From: Momo Kornher Date: Tue, 16 Sep 2025 17:03:22 +0100 Subject: [PATCH] fix: ERROR: Invalid requirement: "'twine<6.2.0'" https://github.com/cdklabs/publib/issues/1716 attempted to pin the Twine version as a hotfix to the `--skip-existing` error with Code Artifact. The escaping ended up being wrong. This time I tested it. --- bin/publib-pypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publib-pypi b/bin/publib-pypi index 0208ab69..65a5277f 100755 --- a/bin/publib-pypi +++ b/bin/publib-pypi @@ -40,7 +40,7 @@ fi upload_opts="--verbose --skip-existing" # Install required packages -packages="'twine<6.2.0'" +packages="twine<6.2.0" if [ -n "${PYPI_TRUSTED_PUBLISHER:-}" ]; then packages="$packages id"