Skip to content

Commit

Permalink
fix python-version
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-jansen committed Jul 11, 2023
1 parent e7f8640 commit b4044d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
uses: pypa/[email protected]
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
Expand Down

0 comments on commit b4044d2

Please sign in to comment.