summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml22
1 files changed, 13 insertions, 9 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 4b3dff21..2f6a2f09 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,17 +1,21 @@
+version: 1.0.{build}
+
environment:
matrix:
- - python: 27
- - python: 35
- - python: 35-x64
+ - python: 27
+ - python: 35
+ - python: 35-x64
install:
- - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- - python -m pip install -U pip wheel setuptools
- - pip install -r requirements.txt
+ - cmd: >-
+ SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
+ python -m pip install -U pip wheel setuptools
+ pip install -r requirements.txt
-build: false
+build_script:
+ - cmd: >-
+ python -u setup.py clean
+ python -u setup.py bdist_wheel --static-deps
test_script:
- - python -u setup.py clean
- - python -u setup.py bdist_wheel --static-deps
- ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }