2019-08-25 04:05:43 +00:00
|
|
|
environment:
|
|
|
|
# For Python versions available on Appveyor, see
|
|
|
|
# https://www.appveyor.com/docs/windows-images-software/#python
|
|
|
|
matrix:
|
|
|
|
# - PYTHON: "C:\\Python27"
|
|
|
|
# - PYTHON: "C:\\Python33"
|
|
|
|
# - PYTHON: "C:\\Python34"
|
|
|
|
# - PYTHON: "C:\\Python35"
|
|
|
|
# - PYTHON: "C:\\Python36"
|
|
|
|
# - PYTHON: "C:\\Python37"
|
|
|
|
# - PYTHON: "C:\\Python27-x64"
|
|
|
|
# - PYTHON: "C:\\Python33-x64"
|
|
|
|
# - PYTHON: "C:\\Python34-x64"
|
|
|
|
# - PYTHON: "C:\\Python35-x64"
|
|
|
|
# - PYTHON: "C:\\Python36-x64"
|
|
|
|
- PYTHON: "C:\\Python37-x64"
|
|
|
|
|
|
|
|
install:
|
2022-01-16 22:36:37 +00:00
|
|
|
- "%PYTHON%\\python.exe -m pip install tox wheel pyinstaller pil"
|
2019-08-25 04:05:43 +00:00
|
|
|
|
|
|
|
build: off
|
|
|
|
|
2021-12-11 10:22:59 +00:00
|
|
|
# don't run tests on windows because we don't have imagemagick
|
|
|
|
#test_script:
|
|
|
|
# - "%PYTHON%\\python.exe -m tox"
|
2019-08-25 04:05:43 +00:00
|
|
|
|
|
|
|
after_test:
|
|
|
|
- "%PYTHON%\\python.exe setup.py bdist_wheel"
|
|
|
|
- "%PYTHON%\\python.exe -m PyInstaller --clean --onefile --noconsole src/img2pdf.py"
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: dist\*
|