A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

84 rindas
1.9 KiB

  1. # This config file is used by appveyor.com to build Windows release binaries
  2. version: 0.6.dev0-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%\\python.exe -m pip"
  13. SETUPPY: "%WRAPPER% %PYTHON%\\python.exe setup.py --with-extension"
  14. TWINE: "%WRAPPER% %PYTHON%\\python.exe -m twine"
  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:\\Python34"
  26. PYTHON_VERSION: "3.4"
  27. PYTHON_ARCH: "32"
  28. - PYTHON: "C:\\Python34-x64"
  29. PYTHON_VERSION: "3.4"
  30. PYTHON_ARCH: "64"
  31. - PYTHON: "C:\\Python35"
  32. PYTHON_VERSION: "3.5"
  33. PYTHON_ARCH: "32"
  34. - PYTHON: "C:\\Python35-x64"
  35. PYTHON_VERSION: "3.5"
  36. PYTHON_ARCH: "64"
  37. - PYTHON: "C:\\Python36"
  38. PYTHON_VERSION: "3.6"
  39. PYTHON_ARCH: "32"
  40. - PYTHON: "C:\\Python36-x64"
  41. PYTHON_VERSION: "3.6"
  42. PYTHON_ARCH: "64"
  43. - PYTHON: "C:\\Python37"
  44. PYTHON_VERSION: "3.7"
  45. PYTHON_ARCH: "32"
  46. - PYTHON: "C:\\Python37-x64"
  47. PYTHON_VERSION: "3.7"
  48. PYTHON_ARCH: "64"
  49. install:
  50. - "%PIP% install --disable-pip-version-check --user --upgrade pip"
  51. - "%PIP% install wheel twine"
  52. build_script:
  53. - "%SETUPPY% build"
  54. test_script:
  55. - "%SETUPPY% -q test"
  56. after_test:
  57. - "%SETUPPY% bdist_wheel"
  58. on_success:
  59. - "IF %APPVEYOR_REPO_BRANCH%==master %TWINE% upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%"
  60. artifacts:
  61. - path: dist\*
  62. deploy: off