Commit 0790ac2d authored by Jason Madden's avatar Jason Madden

Another pass at pip 10

parent 54f9f43e
...@@ -118,7 +118,7 @@ install: ...@@ -118,7 +118,7 @@ install:
# Upgrade to the latest version of pip to avoid it displaying warnings # Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date. # about it being out of date.
- "%CMD_IN_ENV% pip install --disable-pip-version-check --user --upgrade pip" - "%CMD_IN_ENV% %PYEXE% -m pip install --disable-pip-version-check --user --upgrade pip"
# Install the build dependencies of the project. If some dependencies contain # Install the build dependencies of the project. If some dependencies contain
# compiled extensions and are not provided as pre-built wheel packages, # compiled extensions and are not provided as pre-built wheel packages,
...@@ -142,7 +142,7 @@ build_script: ...@@ -142,7 +142,7 @@ build_script:
# into a variable, using python to glob. # into a variable, using python to glob.
- "%PYEXE% -c \"import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt" - "%PYEXE% -c \"import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt"
- set /p PYWHL=<whl.txt - set /p PYWHL=<whl.txt
- pip install %PYWHL% - "%PYEXE% -m pip install %PYWHL%"
test_script: test_script:
# Run the project tests # Run the project tests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment