appveyor: build dependency wheels too, make them downloadable

This commit is contained in:
Brian Warner 2016-12-14 13:58:55 -08:00
parent a4ab78e12b
commit d23db295e6

View File

@ -34,15 +34,17 @@ test_script:
%PYTHON%\Scripts\tox.exe -e py %PYTHON%\Scripts\tox.exe -e py
after_test: after_test:
# This step builds your wheels. # This builds the main tahoe wheel, and wheels for all dependencies.
# Again, you only need build.cmd if you're building C extensions for # Again, you only need build.cmd if you're building C extensions for
# 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct # 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct
# interpreter # interpreter
- | - |
%PYTHON%\python.exe setup.py bdist_wheel %PYTHON%\python.exe setup.py bdist_wheel
%PYTHON%\python.exe -m pip wheel -w dist .
artifacts: artifacts:
# bdist_wheel puts your built wheel in the dist directory # bdist_wheel puts your built wheel in the dist directory
# "pip wheel -w dist ." puts all the dependency wheels there too
- path: dist\* - path: dist\*
#on_success: #on_success: