blob: d0edee187ac30163308df059c62e32df5765fcb5 [file] [log] [blame]
environment:
CIBW_SKIP: cp27-* cp33-* cp34-*
CIBW_TEST_COMMAND: python -m unittest discover -s {project}/tests
install:
- cmd: C:\Python36-x64\python.exe -m pip install cibuildwheel
build_script:
- cmd: C:\Python36-x64\python.exe -m cibuildwheel --output-dir wheelhouse
- ps: >-
if ($env:APPVEYOR_REPO_TAG -eq "true") {
Invoke-Expression "python -m pip install twine"
Invoke-Expression "python -m twine upload --skip-existing wheelhouse/*.whl"
}