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.
 
 
 
 

65 lines
1.4 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.4.1-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. PYPI_USERNAME: "earwigbot"
  14. PYPI_PASSWORD:
  15. secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+
  16. matrix:
  17. - PYTHON: "C:\\Python27"
  18. PYTHON_VERSION: "2.7"
  19. PYTHON_ARCH: "32"
  20. - PYTHON: "C:\\Python27-x64"
  21. PYTHON_VERSION: "2.7"
  22. PYTHON_ARCH: "64"
  23. - PYTHON: "C:\\Python33"
  24. PYTHON_VERSION: "3.3"
  25. PYTHON_ARCH: "32"
  26. - PYTHON: "C:\\Python33-x64"
  27. PYTHON_VERSION: "3.3"
  28. PYTHON_ARCH: "64"
  29. - PYTHON: "C:\\Python34"
  30. PYTHON_VERSION: "3.4"
  31. PYTHON_ARCH: "32"
  32. - PYTHON: "C:\\Python34-x64"
  33. PYTHON_VERSION: "3.4"
  34. PYTHON_ARCH: "64"
  35. install:
  36. - "%PIP% install wheel twine"
  37. build_script:
  38. - "%SETUPPY% build"
  39. test_script:
  40. - "%SETUPPY% -q test"
  41. after_test:
  42. - "%SETUPPY% bdist_wheel"
  43. on_success:
  44. - "twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%"
  45. artifacts:
  46. - path: dist\*
  47. deploy: off