From 5bc8001078e91ad299b2ffba1ed54ef30584929c Mon Sep 17 00:00:00 2001 From: Ken Kroenlein Date: Tue, 9 Jan 2024 11:23:53 -0700 Subject: [PATCH] Use API token for PyPI auth --- .travis.yml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ab4cb1ea..4f122dc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,8 +36,8 @@ deploy: python: '3.10' # only need this to run once env: UPGRADES="" - provider: pypi - user: "CitrineInformatics" - password: "$PYPI_PASSWORD" + user: "__token__" + password: "$PYPI_API_TOKEN" distributions: "sdist bdist_wheel" skip_existing: true on: diff --git a/setup.py b/setup.py index ae5cc13d..02e94a51 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ packages.append("") setup(name='gemd', - version='1.17.0', + version='1.17.1', python_requires='>=3.8', url='http://github.com/CitrineInformatics/gemd-python', description="Python binding for Citrine's GEMD data model",