File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ install:
19
19
if ($env:PYTHON) {
20
20
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
21
21
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
22
- python -m pip install --disable-pip-version-check --user --upgrade pip setuptools
22
+ python -m pip install --disable-pip-version-check --upgrade --no-warn-script-location pip setuptools
23
23
} elseif ($env:CONDA) {
24
24
if ($env:CONDA -eq "27") { $env:CONDA = "" }
25
25
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
Original file line number Diff line number Diff line change 12
12
13
13
env :
14
14
CIBW_TEST_COMMAND : python {project}/tests/test.py
15
- CIBW_BEFORE_BUILD : pip install git+https://github.com/pybind/pybind11.git@master
15
+ CIBW_BEFORE_BUILD : pip install cmake git+https://github.com/pybind/pybind11.git@master
16
16
17
17
18
18
jobs :
41
41
name : Wheels on ${{ matrix.os }}
42
42
runs-on : ${{ matrix.os }}
43
43
strategy :
44
+ fail-fast : false
44
45
matrix :
45
46
os : [ubuntu-latest, windows-latest, macos-latest]
46
47
You can’t perform that action at this time.
0 commit comments