Fix bug in python CICD pipeline

implemented fix recommended by:
https://stackoverflow.com/a/61693590
https://github.com/pypa/setuptools/issues/1963
This commit is contained in:
Dispatch 2020-07-10 07:03:03 -07:00 committed by Lex Berezhny
parent 33c7c3ee12
commit 6c75a8978b

View file

@ -67,6 +67,9 @@ jobs:
run: |
pip install pyinstaller
pip install -e .
# https://stackoverflow.com/a/61693590
# https://github.com/pypa/setuptools/issues/1963
pip install --upgrade 'setuptools<45.0.0'
- if: startsWith(matrix.os, 'windows') == false
name: Build & Run (Unix)
run: |