From 139d47d17f3c3f6ff1a84ab2bcc043e9b486b965 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Sat, 23 Jul 2022 18:52:12 +0300 Subject: [PATCH] Make publish.sh install keyring by default Signed-off-by: Ari Archer --- scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish.sh b/scripts/publish.sh index ec8bb8d..c6cbc8f 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -3,7 +3,7 @@ set -xe main() { - python3 -m pip install setuptools wheel twine + python3 -m pip install setuptools wheel twine keyring python3 setup.py sdist bdist_wheel python3 -m twine upload dist/* }