From beeb59bcc410e9006662e36cbb66ebe0013e2d5c Mon Sep 17 00:00:00 2001 From: kailinzhuang Date: Wed, 27 Aug 2025 17:53:05 -0700 Subject: [PATCH 1/4] fix email display bug in pyproject authors --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c842577..73e5c39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ description = "Dynamical Components Analysis" readme = "README.md" requires-python = ">=3.6" authors = [ - { name="Jesse Livezey", email="jesse.livezey@gmail.com" }, - { name="David Clark" } + { name = "Jesse Livezey", email = "jesse.livezey@gmail.com" }, + { name = "David Clark", email = "" } ] license = { file = "LICENSE.txt" } classifiers = [ From 9f89b7a293a930c07e6e66149b20cba4ff9cec54 Mon Sep 17 00:00:00 2001 From: kailinzhuang Date: Wed, 27 Aug 2025 18:22:23 -0700 Subject: [PATCH 2/4] update from testpypi to pypi --- .github/workflows/release_pypi.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release_pypi.yml b/.github/workflows/release_pypi.yml index c09a387..e474921 100644 --- a/.github/workflows/release_pypi.yml +++ b/.github/workflows/release_pypi.yml @@ -1,16 +1,16 @@ -name: Publish python package to testPyPI +name: Publish python package to PyPI on: release: types: [published] jobs: - publish-to-testpypi: - name: Publish release to testPyPI + publish-to-pypi: + name: Publish release to PyPI runs-on: ubuntu-latest environment: - name: testrelease - url: https://test.pypi.org/p/DynamicalComponentsAnalysis/ + name: release + url: https://pypi.org/p/DynamicalComponentsAnalysis/ permissions: id-token: write @@ -31,7 +31,5 @@ jobs: - name: Build package run: python -m build - - name: Publish package distributions to testPyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ \ No newline at end of file + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file From 562795112877d27a66cfac519ae94312a5541877 Mon Sep 17 00:00:00 2001 From: kailinzhuang Date: Wed, 27 Aug 2025 18:43:03 -0700 Subject: [PATCH 3/4] Revert "fix email display bug in pyproject authors" This reverts commit beeb59bcc410e9006662e36cbb66ebe0013e2d5c. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 73e5c39..c842577 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ description = "Dynamical Components Analysis" readme = "README.md" requires-python = ">=3.6" authors = [ - { name = "Jesse Livezey", email = "jesse.livezey@gmail.com" }, - { name = "David Clark", email = "" } + { name="Jesse Livezey", email="jesse.livezey@gmail.com" }, + { name="David Clark" } ] license = { file = "LICENSE.txt" } classifiers = [ From b3585ee86843868b0446a26a04171c58ec014908 Mon Sep 17 00:00:00 2001 From: kailinzhuang Date: Thu, 28 Aug 2025 13:02:09 -0700 Subject: [PATCH 4/4] update --- .github/workflows/release_pypi.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_pypi.yml b/.github/workflows/release_pypi.yml index e474921..74dae6a 100644 --- a/.github/workflows/release_pypi.yml +++ b/.github/workflows/release_pypi.yml @@ -9,7 +9,7 @@ jobs: name: Publish release to PyPI runs-on: ubuntu-latest environment: - name: release + name: testrelease url: https://pypi.org/p/DynamicalComponentsAnalysis/ permissions: id-token: write diff --git a/pyproject.toml b/pyproject.toml index c842577..a6eca07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ description = "Dynamical Components Analysis" readme = "README.md" requires-python = ">=3.6" authors = [ - { name="Jesse Livezey", email="jesse.livezey@gmail.com" }, - { name="David Clark" } + { name = "Jesse Livezey", email = "jesse.livezey@gmail.com" }, + { name = "David Clark", email = "dgc2138@cumc.columbia.edu" } ] license = { file = "LICENSE.txt" } classifiers = [