From cdc465a34674d15edf52b656457f6006b9e03edf Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Sun, 29 Mar 2026 11:33:26 -0500 Subject: [PATCH] [build] Fix PyPI publishing (#16375) Fix 87eaf886f5a1fed00639baf3677ac76281cd98f9 Authored by: bashonly --- .github/workflows/release.yml | 6 +++--- .github/workflows/test-workflows.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8829fa413..97982a9dc3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,7 +86,7 @@ jobs: - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.10" # Keep this in sync with test-workflows.yml + python-version: "3.13" # Keep this in sync with test-workflows.yml - name: Process inputs id: process_inputs @@ -180,7 +180,7 @@ jobs: persist-credentials: false - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.10" + python-version: "3.13" # Keep this in sync with devscripts/update_bundle_requirements.py - name: Install Requirements run: | @@ -250,7 +250,7 @@ jobs: merge-multiple: true - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.10" + python-version: "3.13" - name: Generate release notes env: diff --git a/.github/workflows/test-workflows.yml b/.github/workflows/test-workflows.yml index 5870c0bceb..26a84eb615 100644 --- a/.github/workflows/test-workflows.yml +++ b/.github/workflows/test-workflows.yml @@ -42,7 +42,7 @@ jobs: persist-credentials: false - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.10" # Keep this in sync with release.yml's prepare job + python-version: "3.13" # Keep this in sync with release.yml's prepare job - name: Install requirements env: ACTIONLINT_TARBALL: ${{ format('actionlint_{0}_linux_amd64.tar.gz', env.ACTIONLINT_VERSION) }}