Skip to content

Commit

Permalink
Use python instead of python3 for win
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Apr 4, 2024
1 parent f105720 commit 202a321
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
if: runner.os == 'Windows'
uses: pypa/[email protected]
env:
CIBW_BEFORE_ALL: python3 -m pip install cibuildwheel -U
CIBW_BEFORE_ALL: python -m pip install cibuildwheel -U
CIBW_BUILD: 'cp310-win_amd64 cp311-win_amd64 cp312-win_amd64'
CIBW_BEFORE_TEST: python3 -m pip install --upgrade pip && python3 -m pip install -r requirements-test.txt
CIBW_BEFORE_TEST: python -m pip install --upgrade pip && python -m pip install -r requirements-test.txt
CIBW_TEST_COMMAND: >
cmd /V /C "set BLOSC_TRACE=1 && python3 -m pytest {project}/tests"
cmd /V /C "set BLOSC_TRACE=1 && python -m pytest {project}/tests"
- name: Build wheels (Linux / Mac OSX x86_64)
if: ${{ matrix.os != 'windows-latest' && matrix.arch != 'aarch64' }}
Expand Down

0 comments on commit 202a321

Please sign in to comment.