A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

59 lines
1.2 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.4.1.dev0-b{build}
  3. branches:
  4. only:
  5. - master
  6. skip_tags: true
  7. environment:
  8. global:
  9. # See: http://stackoverflow.com/a/13751649/163740
  10. WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd"
  11. PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe"
  12. SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension"
  13. matrix:
  14. - PYTHON: "C:\\Python27"
  15. PYTHON_VERSION: "2.7"
  16. PYTHON_ARCH: "32"
  17. - PYTHON: "C:\\Python27-x64"
  18. PYTHON_VERSION: "2.7"
  19. PYTHON_ARCH: "64"
  20. - PYTHON: "C:\\Python33"
  21. PYTHON_VERSION: "3.3"
  22. PYTHON_ARCH: "32"
  23. - PYTHON: "C:\\Python33-x64"
  24. PYTHON_VERSION: "3.3"
  25. PYTHON_ARCH: "64"
  26. - PYTHON: "C:\\Python34"
  27. PYTHON_VERSION: "3.4"
  28. PYTHON_ARCH: "32"
  29. - PYTHON: "C:\\Python34-x64"
  30. PYTHON_VERSION: "3.4"
  31. PYTHON_ARCH: "64"
  32. install:
  33. - "%PIP% install wheel"
  34. build_script:
  35. - "%SETUPPY% build"
  36. test_script:
  37. - "%SETUPPY% -q test"
  38. after_test:
  39. - "%SETUPPY% bdist_wheel"
  40. artifacts:
  41. - path: dist\*
  42. deploy: off