summaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: cc64b9f26175ff9cbaaa8fc0b40ada66f4ede862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: 1.0.{build}

environment:
  matrix:
  - python: 27
  - python: 35
  - python: 35-x64
  - python: 36
  - python: 36-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 --install-option="--no-cython-compile"

build: off
build_script:
    - python -u setup.py clean
    - python -u setup.py bdist_wheel --static-deps

test: off
test_script:
  - ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }