From e88780b51443026f07a30b40f7e7abf0f2a509b3 Mon Sep 17 00:00:00 2001 From: Chris Jaehnen Date: Wed, 18 Mar 2026 21:25:24 -0400 Subject: [PATCH 1/3] Trigger release --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d31fb91..f6ceca5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,4 +53,3 @@ norecursedirs = [".git", ".tox", ".venv"] filterwarnings = "ignore::DeprecationWarning" log_cli = true log_cli_level = "INFO" - From b25d5d94b334453577955f4629c451f90a94158e Mon Sep 17 00:00:00 2001 From: Chris Jaehnen Date: Thu, 19 Mar 2026 14:44:44 -0400 Subject: [PATCH 2/3] Update release workflow to support pypi trusted publishing --- .github/workflows/release.yml | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b0e41f6..e7bc917 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,11 +14,37 @@ on: - README.md jobs: - release: - uses: opengood-ai/central-workflows/.github/workflows/python-py-pi-release.yml@main + release-build: + uses: opengood-ai/central-workflows/.github/workflows/python-release-build.yml@main with: git-email: ${{ vars.GIT_EMAIL }} git-user: ${{ vars.GIT_USER }} secrets: - py-pi-token: ${{ secrets.PY_PI_TOKEN }} + workflow-token: ${{ secrets.WORKFLOW_TOKEN }} + + py-pi-release: + name: Python PyPI Release + needs: [ release-build ] + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/${{ github.event.repository.name }} + permissions: + contents: read + id-token: write + steps: + - name: Download Distribution Packages + uses: actions/download-artifact@v8.0.1 + with: + name: python-package-distributions + path: dist/ + + - name: Publish Distribution Package + uses: pypa/gh-action-pypi-publish@v1.13.0 + with: + verbose: true + + release: + uses: opengood-ai/central-workflows/.github/workflows/python-release.yml@main + secrets: workflow-token: ${{ secrets.WORKFLOW_TOKEN }} From 2853347e68c07c11772e88361ddad208b595481c Mon Sep 17 00:00:00 2001 From: Chris Jaehnen Date: Thu, 19 Mar 2026 14:49:01 -0400 Subject: [PATCH 3/3] Rollback versions --- .bumpversion.toml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index b0df89f..dca8dc8 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "2.4.0" +current_version = "2.3.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/pyproject.toml b/pyproject.toml index f6ceca5..4ff95da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "opengood.py_ml_plot" -version = "2.4.0" +version = "2.3.0" description = "Modules containing reusable functions for machine learning visualization plotting" authors = [ { name = "OpenGood", email = "ai@opengood.ai" }