Skip to content

Commit

Permalink
Fix pip issues on AppVeyor CI (pybind#1369)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored and wjakob committed Apr 22, 2018
1 parent 060936f commit ffd56eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ install:
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
pip install --disable-pip-version-check --user --upgrade pip wheel
pip install pytest numpy
python -m pip install --upgrade pip wheel
python -m pip install pytest numpy --no-warn-script-location
} elseif ($env:CONDA) {
if ($env:CONDA -eq "27") { $env:CONDA = "" }
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
Expand Down

0 comments on commit ffd56eb

Please sign in to comment.