Skip to content

Commit

Permalink
consistent use of pip (as a python module)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravnoor committed Dec 20, 2023
1 parent 5dbf932 commit 912c299
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ jobs:

CIBW_BEFORE_ALL_LINUX: |
yum install -y gcc-c++ libpng-devel libpng
pip install cmake ninja
python -m pip install cmake ninja
CIBW_BEFORE_ALL_WINDOWS: |
pip install cmake ninja
python -m pip install cmake ninja
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_BEFORE_ALL_MACOS: |
pip install cmake ninja
python -m pip install cmake ninja
CIBW_ENVIRONMENT_MACOS: |
CMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}
Expand All @@ -176,7 +176,7 @@ jobs:
- name: Install and test (Linux / Mac)
if: ${{ ! startsWith(matrix.os, 'windows-') }}
run: |
pip install wheelhouse/cp${{ matrix.cibw_python }}-${{matrix.platform_id }}/*.whl
python -m pip install wheelhouse/cp${{ matrix.cibw_python }}-${{matrix.platform_id }}/*.whl
tests/run_tests.sh
- name: Install and test (Windows)
Expand Down

0 comments on commit 912c299

Please sign in to comment.