aboutsummaryrefslogtreecommitdiffstats
path: root/.appveyor.yaml
blob: 2649c8da23633e3ea71810edf02e977f8dd8d84e (plain) (blame)
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
# based on: https://packaging.python.org/guides/supporting-windows-using-appveyor/

image: Visual Studio 2019

environment:
  matrix:
    # - PYTHON: C:\Python27
    # - PYTHON: C:\Python27-x64
    # - PYTHON: C:\Python35
    # - PYTHON: C:\Python35-x64
    # - PYTHON: C:\Python36
    # - PYTHON: C:\Python36-x64
    # - PYTHON: C:\Python37
    # - PYTHON: C:\Python37-x64
    # - PYTHON: C:\Python38
    # - PYTHON: C:\Python38-x64
    - {PY_VER: "39", PY_ARCH: "32"}
    - {PY_VER: "39", PY_ARCH: "64"}

  PYEXE: C:\Python36\python.exe  

install:
  - |
    %PYTHON%\python.exe -m pip install --upgrade -q pip wheel setuptools
    %PYTHON%\python.exe -m pip list --format columns

# only used when compiling (for Python with C extensions this is done in the after_test)
build: off

test_script:
  - echo Skipped for now

after_test:
  - |
    %PYTHON%\python.exe setup.py bdist_wheel

artifacts:
  - path: dist\*