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.
 
 
 
 

76 lines
1.7 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.4.3-b{build}
  3. branches:
  4. only:
  5. - master
  6. - develop
  7. skip_tags: true
  8. environment:
  9. global:
  10. # See: http://stackoverflow.com/a/13751649/163740
  11. WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd"
  12. PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe"
  13. SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension"
  14. PYMOD: "%WRAPPER% %PYTHON%\\python -m"
  15. PYPI_USERNAME: "earwigbot"
  16. PYPI_PASSWORD:
  17. secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+
  18. matrix:
  19. - PYTHON: "C:\\Python27"
  20. PYTHON_VERSION: "2.7"
  21. PYTHON_ARCH: "32"
  22. - PYTHON: "C:\\Python27-x64"
  23. PYTHON_VERSION: "2.7"
  24. PYTHON_ARCH: "64"
  25. - PYTHON: "C:\\Python33"
  26. PYTHON_VERSION: "3.3"
  27. PYTHON_ARCH: "32"
  28. - PYTHON: "C:\\Python33-x64"
  29. PYTHON_VERSION: "3.3"
  30. PYTHON_ARCH: "64"
  31. - PYTHON: "C:\\Python34"
  32. PYTHON_VERSION: "3.4"
  33. PYTHON_ARCH: "32"
  34. - PYTHON: "C:\\Python34-x64"
  35. PYTHON_VERSION: "3.4"
  36. PYTHON_ARCH: "64"
  37. - PYTHON: "C:\\Python35"
  38. PYTHON_VERSION: "3.5"
  39. PYTHON_ARCH: "32"
  40. - PYTHON: "C:\\Python35-x64"
  41. PYTHON_VERSION: "3.5"
  42. PYTHON_ARCH: "64"
  43. install:
  44. - "%PIP% install --disable-pip-version-check --user --upgrade pip"
  45. - "%PIP% install wheel twine"
  46. build_script:
  47. - "%SETUPPY% build"
  48. test_script:
  49. - "%SETUPPY% -q test"
  50. after_test:
  51. - "%SETUPPY% bdist_wheel"
  52. on_success:
  53. - "IF %APPVEYOR_REPO_BRANCH%==master %PYMOD% twine upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%"
  54. artifacts:
  55. - path: dist\*
  56. deploy: off