Skip to content

Commit 904083a

Browse files
authored
fix(pypi): ERROR: Invalid requirement: "'twine<6.2.0'" (#1721)
fix: ERROR: Invalid requirement: "'twine<6.2.0'" #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.
1 parent a667541 commit 904083a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/publib-pypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fi
4040
upload_opts="--verbose --skip-existing"
4141

4242
# Install required packages
43-
packages="'twine<6.2.0'"
43+
packages="twine<6.2.0"
4444
if [ -n "${PYPI_TRUSTED_PUBLISHER:-}" ]; then
4545
packages="$packages id"
4646

0 commit comments

Comments
 (0)