forked from computervision-xray-testing/pybalu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
40 lines (31 loc) · 838 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
branches:
only:
- master
- dev
environment:
global:
# only do for Python >= 3.6.
CIBW_BUILD: "cp3?-*"
CIBW_SKIP: "cp33-* cp34-* cp35-*"
CIBW_BEFORE_BUILD: "python -m pip install -r requirements.txt"
TWINE_USERNAME: mabucchi
TWINE_PASSWORD:
secure: ffBVdW93F+PhTrof4BvLYw==
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: "python37-x64-vs2015"
stack: python 3.7
init:
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
install: python -m pip install cibuildwheel==1.3.0
build_script: python -m cibuildwheel --output-dir dist
artifacts:
- path: "dist\\*.whl"
name: Wheels
for:
- branches:
only:
- master
deploy_script:
- python -m pip install twine
- "python -m twine upload --skip-existing dist\\*.whl"