summaryrefslogtreecommitdiff
path: root/.appveyor.yaml
blob: 16eb30394aa7252c79811a60e54855236a25a105 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
environment:

  matrix:
    - PYTHON: C:\Python266
    - PYTHON: C:\Python27
#    - PYTHON: C:\Python33
#    - PYTHON: C:\Python34
#    - PYTHON: C:\Python35
#    - PYTHON: C:\Python266-x64
#    - PYTHON: C:\Python27-x64
#    - PYTHON: C:\Python33-x64
#      DISTUTILS_USE_SDK: '1'
#    - PYTHON: 'C:\Python34-x64'
#      DISTUTILS_USE_SDK: '1'
#    - PYTHON: 'C:\Python35-x64'

install:
  - '%PYTHON%\python.exe -c "import sys, os; print sys.executable"'
  - |
    %PYTHON%\python.exe -c "import sys, os; print sys.executable"
  - >
    %PYTHON%\python.exe -c "import sys, os; print sys.executable"
  - >
    %PYTHON%\python.exe -c "import sys, os;
    os.system('%s -c \"print True\"'
    % sys.executable)
  - >
    if sys.version_info < (2, 7) else True"
    %PYTHON%\python.exe -c "import sys, os;
    os.system('%s -c \"print True\"'
    % sys.executable)
    if sys.version_info < (2, 7) else True"
  - >
    %PYTHON%\python.exe -c "import sys, os;
    os.system('%s -c \"import urllib2; open(\'c:\\get-pip.py\', \'w\').
    write(urllib2.urlopen(\'https://bootstrap.pypa.io/get-pip.py\').read())\"'
    % sys.executable)
    if sys.version_info < (2, 7) else True"
  - >
    %PYTHON%\python.exe -c "import sys, os;
    os.system('%s c:\get-pip.py' % sys.executable)
    if sys.version_info < (2, 7) else True"
  - '%PYTHON%\python.exe -m pip install wheel'

build: off

test_script:
  - echo Skipped for now

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

artifacts:
  # bdist_wheel puts your built wheel in the dist directory
  - path: dist\*