From b06e839d93ae7b78f45d4ca9b3b6f5fdf2bdf6d4 Mon Sep 17 00:00:00 2001 From: Prasanna Venkatesh Date: Wed, 12 Feb 2020 08:43:42 +0530 Subject: [PATCH] make pipeline to deal with fbs issue #169. Refer: https://github.com/mherrmann/fbs/issues/169 --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2b7a920..18312b7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,9 +34,12 @@ steps: pip install pipenv displayName: 'Install Python Dependencies' -- script: | +- bash: | + mkdir .venv pipenv install pipenv graph + # temp fix for PyInstaller==3.6 acc. to https://github.com/mherrmann/fbs/issues/169 + mv .venv/lib/python3.7/site-packages/fbs/freeze/hooks/hook-PySide2.py .venv/lib/python3.7/site-packages/fbs/freeze/hooks/hook-PySide2_fbs.py displayName: 'Install Package Dependencies' - script: |