From 186599a1f02da44344baad4a7a23e37454d7139b Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 18 Jan 2020 11:15:40 +0000 Subject: [PATCH] Switch examples to use PyPI API tokens --- README.md | 4 ++-- examples/travis-ci-deploy-only.yml | 4 ++-- examples/travis-ci-test-and-deploy.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f926acff..38d8413c 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ jobs: env: global: - - TWINE_USERNAME=joerick - # Note: TWINE_PASSWORD is set in Travis settings + - TWINE_USERNAME=__token__ + # Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings install: - python -m pip install twine cibuildwheel==1.1.0 diff --git a/examples/travis-ci-deploy-only.yml b/examples/travis-ci-deploy-only.yml index e0ace8d9..55f8339b 100644 --- a/examples/travis-ci-deploy-only.yml +++ b/examples/travis-ci-deploy-only.yml @@ -19,8 +19,8 @@ jobs: env: global: - - TWINE_USERNAME=joerick - # Note: TWINE_PASSWORD is set in Travis settings + - TWINE_USERNAME=__token__ + # Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings install: - python -m pip install twine cibuildwheel==1.0.0 diff --git a/examples/travis-ci-test-and-deploy.yml b/examples/travis-ci-test-and-deploy.yml index bdaa415a..006fe940 100644 --- a/examples/travis-ci-test-and-deploy.yml +++ b/examples/travis-ci-test-and-deploy.yml @@ -74,5 +74,5 @@ jobs: env: global: - - TWINE_USERNAME=joerick - # Note: TWINE_PASSWORD is set in Travis settings + - TWINE_USERNAME=__token__ + # Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings