Skip to content

Commit b400943

Browse files
committed
undoing
2 parents 9f5232f + 39d21aa commit b400943

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install pytest
34-
pip install -r requirements.txt
33+
python -m pip install pytest
34+
python -m pip install -r requirements.txt
3535
3636
- name: Build wheels (Windows x86)
3737
if: runner.os == 'Windows'
@@ -40,8 +40,8 @@ jobs:
4040
python -m cibuildwheel --output-dir wheelhouse
4141
env:
4242
CIBW_BUILD: 'cp37-win32 cp38-win32 cp39-win32'
43-
CIBW_BEFORE_BUILD: pip install -r requirements.txt
44-
CIBW_BEFORE_TEST: pip install pytest numpy
43+
CIBW_BEFORE_BUILD: python -m pip install -r requirements.txt
44+
CIBW_BEFORE_TEST: python -m pip install pytest numpy
4545
CIBW_TEST_COMMAND: pytest {project}
4646
CIBW_BUILD_VERBOSITY: 1
4747

@@ -57,8 +57,8 @@ jobs:
5757
python -m cibuildwheel --output-dir wheelhouse
5858
env:
5959
CIBW_BUILD: 'cp37-win_amd64 cp38-win_amd64 cp39-win_amd64'
60-
CIBW_BEFORE_BUILD: pip install -r requirements.txt
61-
CIBW_BEFORE_TEST: pip install pytest numpy
60+
CIBW_BEFORE_BUILD: python -m pip install -r requirements.txt
61+
CIBW_BEFORE_TEST: python -m pip install pytest numpy
6262
CIBW_TEST_COMMAND: pytest {project}
6363
CIBW_BUILD_VERBOSITY: 1
6464

@@ -69,7 +69,7 @@ jobs:
6969
python -m cibuildwheel --output-dir wheelhouse
7070
env:
7171
CIBW_BUILD: 'cp37-* cp38-* cp39-*'
72-
CIBW_BEFORE_BUILD: pip install -r requirements.txt
72+
CIBW_BEFORE_BUILD: python -m pip install -r requirements.txt
7373
CIBW_BEFORE_TEST: |
7474
pip install pytest
7575
pip install -r requirements.txt

0 commit comments

Comments
 (0)