A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

94 行
2.1 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. PYEXE: "%WRAPPER% %PYTHON%\\python.exe"
  13. SETUPPY: "%PYEXE% setup.py --with-extension"
  14. PIP: "%PYEXE% -m pip"
  15. TWINE: "%PYEXE% -m twine"
  16. PYPI_USERNAME: "earwigbot"
  17. PYPI_PASSWORD:
  18. secure: gOIcvPxSC2ujuhwOzwj3v8xjq3CCYd8keFWVnguLM+gcL0e02qshDHy7gwZZwj0+
  19. matrix:
  20. - PYTHON: "C:\\Python27"
  21. PYTHON_VERSION: "2.7"
  22. PYTHON_ARCH: "32"
  23. - PYTHON: "C:\\Python27-x64"
  24. PYTHON_VERSION: "2.7"
  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. - PYTHON: "C:\\Python35"
  33. PYTHON_VERSION: "3.5"
  34. PYTHON_ARCH: "32"
  35. - PYTHON: "C:\\Python35-x64"
  36. PYTHON_VERSION: "3.5"
  37. PYTHON_ARCH: "64"
  38. - PYTHON: "C:\\Python36"
  39. PYTHON_VERSION: "3.6"
  40. PYTHON_ARCH: "32"
  41. - PYTHON: "C:\\Python36-x64"
  42. PYTHON_VERSION: "3.6"
  43. PYTHON_ARCH: "64"
  44. - PYTHON: "C:\\Python37"
  45. PYTHON_VERSION: "3.7"
  46. PYTHON_ARCH: "32"
  47. - PYTHON: "C:\\Python37-x64"
  48. PYTHON_VERSION: "3.7"
  49. PYTHON_ARCH: "64"
  50. - PYTHON: "C:\\Python38"
  51. PYTHON_VERSION: "3.8"
  52. PYTHON_ARCH: "32"
  53. - PYTHON: "C:\\Python38-x64"
  54. PYTHON_VERSION: "3.8"
  55. PYTHON_ARCH: "64"
  56. install:
  57. - "%PIP% install --disable-pip-version-check --user --upgrade pip"
  58. - "%PIP% install wheel twine"
  59. build_script:
  60. - "%SETUPPY% build"
  61. - "%SETUPPY% develop --user"
  62. test_script:
  63. - "%PYEXE% -m unittest discover"
  64. after_test:
  65. - "%SETUPPY% bdist_wheel"
  66. on_success:
  67. - "IF %APPVEYOR_REPO_BRANCH%==master %TWINE% upload dist\\* -u %PYPI_USERNAME% -p %PYPI_PASSWORD%"
  68. artifacts:
  69. - path: dist\*
  70. deploy: off