From aa43997f48d77c1ae61147b8b4a979c9ee0d7018 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 08:35:12 +0000 Subject: [PATCH 1/2] BOT: Bump pypa/gh-action-pypi-publish from 1.12.3 to 1.12.4 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.12.3 to 1.12.4. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.12.3...v1.12.4) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yaml | 2 +- .github/workflows/sdist.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 69d578e..9448775 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -91,7 +91,7 @@ jobs: run: ls dist/ -l - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@v1.12.3 + uses: pypa/gh-action-pypi-publish@v1.12.4 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/sdist.yaml b/.github/workflows/sdist.yaml index 9ae5e0c..7148fb8 100644 --- a/.github/workflows/sdist.yaml +++ b/.github/workflows/sdist.yaml @@ -58,7 +58,7 @@ jobs: - name: Publish to TestPyPI if: ${{ github.event_name == 'push' }} - uses: pypa/gh-action-pypi-publish@v1.12.3 + uses: pypa/gh-action-pypi-publish@v1.12.4 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} From 1d9284819d46543c538b2912bffe9c1315b606fd Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 12 Feb 2025 20:59:13 +1100 Subject: [PATCH 2/2] remove obsolete py ver 3.7 and add 3.11 --- .github/workflows/sdist.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sdist.yaml b/.github/workflows/sdist.yaml index 7148fb8..212ae4c 100644 --- a/.github/workflows/sdist.yaml +++ b/.github/workflows/sdist.yaml @@ -21,10 +21,10 @@ jobs: fail-fast: false matrix: python-version: - - "3.7" - "3.8" - "3.9" - "3.10" + - "3.11" steps: - uses: actions/checkout@v4 with: