diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2020-04-17 19:03:14 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2020-04-17 19:03:14 (GMT) |
commit | fa3141407b28e2f00be26879fee6901ea51dcbf0 (patch) | |
tree | ff55093779233f0d5aea6f38cf30ce635d8cdd2c /ttkthemes/.appveyor.yml | |
parent | 1fc0cefeb941845a6d8537154b214b1f660f5371 (diff) | |
parent | 6ba2a4c90cd85d0193e5219170b31701579989a8 (diff) | |
download | blt-fa3141407b28e2f00be26879fee6901ea51dcbf0.zip blt-fa3141407b28e2f00be26879fee6901ea51dcbf0.tar.gz blt-fa3141407b28e2f00be26879fee6901ea51dcbf0.tar.bz2 |
Merge commit '6ba2a4c90cd85d0193e5219170b31701579989a8' as 'ttkthemes'
Diffstat (limited to 'ttkthemes/.appveyor.yml')
-rw-r--r-- | ttkthemes/.appveyor.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ttkthemes/.appveyor.yml b/ttkthemes/.appveyor.yml new file mode 100644 index 0000000..c5a2e7f --- /dev/null +++ b/ttkthemes/.appveyor.yml @@ -0,0 +1,29 @@ +environment: + matrix: + - PYTHON: "C:\\PYTHON35" + - PYTHON: "C:\\PYTHON35-x64" + - PYTHON: "C:\\PYTHON36" + - PYTHON: "C:\\PYTHON36-x64" + - PYTHON: "C:\\PYTHON37" + - PYTHON: "C:\\PYTHON37-x64" + - PYTHON: "C:\\PYTHON38" + - PYTHON: "C:\\PYTHON38-x64" +build: off +before_test: + - "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools" +test_script: + - "%PYTHON%\\python.exe ci.py" +artifacts: + - path: "/dist/*.whl" +deploy: + provider: GitHub + auth_token: + secure: QimY++/91urL/oMJL/q2zYFqc1C7747HguEaIbPQovtC3zG8CK+TiCmFOCXy1D6e + artifact: "/dist/*.whl" + draft: false + prerelease: false + force_update: true + on: + branch: master + appveyor_repo_tag: true + |