diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b7e795..b573fe1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,6 +80,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Version check (semver) run: | VERSION="${{ env.ONNXRUNTIME_VERSION }}" @@ -119,8 +123,7 @@ jobs: wget \ qemu-user-binfmt \ gcc-${{ matrix.cc_version }}${{ env.ARCH_SUFFIX }} \ - g++-${{ matrix.cxx_version }}${{ env.ARCH_SUFFIX }} \ - python3 + g++-${{ matrix.cxx_version }}${{ env.ARCH_SUFFIX }} - name: Install build dependencies on macos if: steps.cache-build-result.outputs.cache-hit != 'true' && startsWith(matrix.os, 'macos')