From 20126aa2caa57091bac6c9285a5612abfd8b8267 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 20 Dec 2024 16:07:06 -0700 Subject: [PATCH 1/2] Switch to pypi token --- .github/workflows/python-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 9281f86c..6f956d1a 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -23,8 +23,8 @@ jobs: pip install build twine - name: Build and publish env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | python -m build twine upload dist/* From acec562ef5196c7acb64b4ae6a108f30a6ec3535 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 20 Dec 2024 16:09:11 -0700 Subject: [PATCH 2/2] up version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a966b8f5..f160c529 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "flasc" -version = "2.2" +version = "2.2.1" description = "FLASC provides a rich suite of analysis tools for SCADA data filtering & analysis, wind farm model validation, field experiment design, and field experiment monitoring." readme = "README.md" requires-python = ">=3.9"