From c50406d5d0bce3416bfb6d0d92fde9c0559a676d Mon Sep 17 00:00:00 2001 From: Eric Sheng Date: Sun, 2 Feb 2025 20:17:07 -0800 Subject: [PATCH] Fix bin/release_to_pypi.sh (#2) Remove the TWINE_USERNAME export as username authentication is no longer allowed, and the instructions in comments for setting up ~/.pypirc uses tokens (but the env variable export will override and cause an error). --- bin/release_to_pypi.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/release_to_pypi.sh b/bin/release_to_pypi.sh index ba6575a..f0b4f2f 100755 --- a/bin/release_to_pypi.sh +++ b/bin/release_to_pypi.sh @@ -12,8 +12,6 @@ # or implied. See the License for the specific language governing permissions and limitations # under the License. -export TWINE_USERNAME=yugabyte - set -euo pipefail -x cd "${BASH_SOURCE[0]%/*}"/..