File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ install:
9191
9292 # Upgrade to the latest version of pip to avoid it displaying warnings
9393 # about it being out of date.
94- - " pip install --disable-pip-version-check --user --upgrade pip"
94+ - " pip install --disable-pip-version-check -U pip"
9595
9696 # Install the build dependencies of the project. If some dependencies contain
9797 # compiled extensions and are not provided as pre-built wheel packages,
@@ -108,14 +108,14 @@ cache:
108108
109109build_script :
110110 # Build wheel
111- - " %PYEXE% setup.py bdist_wheel bdist_wininst "
112- - ps : " ls dist"
113- # Now install the wheel.
114- # I couldn't get wildcards to work for pip install, so stuff it
115- # into a variable, using python to glob.
116- - " %PYEXE% -c \" import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt"
117- - set /p PYWHL=<whl.txt
118- - pip install %PYWHL%
111+ - " %PYEXE% setup.py install "
112+ # - ps: "ls dist"
113+ # # Now install the wheel.
114+ # # I couldn't get wildcards to work for pip install, so stuff it
115+ # # into a variable, using python to glob.
116+ # - "%PYEXE% -c \"import glob; print(glob.glob('dist/*whl')[0])\" > whl.txt"
117+ # - set /p PYWHL=<whl.txt
118+ # - pip install %PYWHL%
119119
120120test_script :
121121 # Run the project tests
You can’t perform that action at this time.
0 commit comments