From 5efef61095d3f2760a27e540cb4022c6bfd916fd Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Fri, 17 Feb 2023 16:52:29 +0100 Subject: [PATCH] Use python3 in the jobs that weren't tested in PR --- .github/workflows/python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index a5ed3044e496..5a6a17d4360b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -185,14 +185,14 @@ jobs: # After patching the pre-release version, run cargo check. # This updates the cargo.lock file with the new version numbers and keeps the wheel build from failing run: | - python scripts/version_util.py --patch_prerelease + python3 scripts/version_util.py --patch_prerelease cargo check - name: Version check for tagged-release if: startsWith(github.ref, 'refs/tags/v') # This call to version_util.py will assert version from Cargo.toml matches git tagged version vX.Y.Z run: | - python scripts/version_util.py --check_version + python3 scripts/version_util.py --check_version - name: Build Wheel uses: PyO3/maturin-action@v1