From 140ea051795f8f6e57f777cd446350f050b1d947 Mon Sep 17 00:00:00 2001 From: IIIBlueberry <47675164+IIIBlueberry@users.noreply.github.com> Date: Thu, 6 Feb 2020 09:50:16 +0800 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index db020d2..7262bc9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,13 +1,14 @@ version: 1.0.{build} -image: Visual Studio 2017 +image: Visual Studio 2019 environment: - matrix: - - PYTHON: C:\Python38-x64 + PYTHON: C:\Python38-x64 install: -- cmd: '"%PYTHON%\python.exe" -m pip install numpy opencv-python tqdm scenedetect psutil' -- cmd: '"%PYTHON%\python.exe" -m pip install pyinstaller' +- cmd: >- + "%PYTHON%\python.exe" -m pip install -r requirements + + "%PYTHON%\python.exe" -m pip install pyinstaller build_script: -- cmd: '"%PYTHON%\Scripts\pyinstaller" -F av1an.py' +- cmd: '"%PYTHON%\Scripts\pyinstaller" --onefile av1an.py' test: off artifacts: -- path: dist/av1an.exe \ No newline at end of file +- path: dist/av1an.exe