From b4044d2b54b2da0fceee26b400f07290969c189c Mon Sep 17 00:00:00 2001 From: Stefan Jansen Date: Tue, 11 Jul 2023 18:18:23 -0400 Subject: [PATCH] fix python-version --- .github/workflows/build_wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index cdd4ada55b..34a7a5ef4d 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -11,13 +11,13 @@ on: jobs: build_wheels: - name: Wheels for py${{ matrix.python }} on ${{ matrix.os }} - upload to ${{github.event.inputs.target}} + name: Wheels for ${{ matrix.python }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ ubuntu-latest , windows-latest, macos-latest ] - python: ["cp38", "cp39", "cp310", "cp311"] + python: [ "cp38", "cp39", "cp310", "cp311" ] arch: [ auto64 ] steps: @@ -29,7 +29,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: matrix.python - name: Set Xcode version uses: maxim-lobanov/setup-xcode@v1 @@ -59,7 +59,7 @@ jobs: uses: pypa/cibuildwheel@v2.14.0 env: CIBW_BUILD: "${{ matrix.python }}-win_amd64" -# CIBW_TEST_SKIP: "cp311-win_amd64" + # CIBW_TEST_SKIP: "cp311-win_amd64" CIBW_BEFORE_TEST_WINDOWS: > call "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64 && call ./tools/install_talib.bat