|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # This config file is used by appveyor.com to build Windows release binaries
-
- version: 0.4.1.dev0-b{build}
-
- branches:
- only:
- - master
-
- skip_tags: true
-
- environment:
- global:
- # See: http://stackoverflow.com/a/13751649/163740
- WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd"
- PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe"
- SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension"
-
- matrix:
- - PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7.10"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python27-x64"
- PYTHON_VERSION: "2.7.10"
- PYTHON_ARCH: "64"
-
- - PYTHON: "C:\\Python33"
- PYTHON_VERSION: "3.3.6"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python33-x64"
- PYTHON_VERSION: "3.3.6"
- PYTHON_ARCH: "64"
-
- - PYTHON: "C:\\Python34"
- PYTHON_VERSION: "3.4.3"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4.3"
- PYTHON_ARCH: "64"
-
- install:
- - "%PIP% install wheel"
-
- build_script:
- - "%SETUPPY% build"
-
- test_script:
- - "%SETUPPY% -q test"
-
- after_test:
- - "%SETUPPY% bdist_wheel"
-
- artifacts:
- - path: dist\*
-
- deploy: off
|