Skip to content

Commit

Permalink
🚑 Use double quotes to wrap "pip<19" in AppVeyor
Browse files Browse the repository at this point in the history
Prior to this change, Windows/pip printed out the message:
"The system cannot find the file specified."
(and did nothing)

This change ensures that `pip install` is properly executed.

Co-authored-by: Oleksandr Korienev <[email protected]>
  • Loading branch information
webknjaz and okorienev committed Jan 28, 2019
1 parent 9e23cf8 commit d5d5d16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ install:
# Ensure the Git Submoduldes have been pulled down too
- git submodule update --init --recursive

- "tools/build.cmd %PYTHON%\\python.exe -m pip install -U 'pip<19' wheel setuptools"
- >-
tools/build.cmd %PYTHON%\python.exe -m
pip install -U "pip<19" wheel setuptools
- "tools/build.cmd %PYTHON%\\python.exe -m pip install -r requirements/cython.txt"
- "tools/build.cmd %PYTHON%\\python.exe -m pip install -r requirements/ci.txt"

Expand Down

0 comments on commit d5d5d16

Please sign in to comment.