From 7e220d274123e8c4f7a01e2582b799b4e75e5999 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 13 Jan 2020 13:46:07 -0500 Subject: [PATCH] downgrade setuptools --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 790784a42..1da492bc0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,7 +70,8 @@ test:json-api: paths: - lbrynet-${OS}.zip script: - - pip install pyinstaller==3.5 + - pip install --upgrade 'setuptools<45.0.0' + - pip install pyinstaller - python3.7 docker/set_build.py - pip install -e . - pyinstaller --onefile --name lbrynet lbry/extras/cli.py @@ -125,7 +126,8 @@ build:windows: after_script: - rmdir -Recurse venv script: - - pip install pyinstaller==3.5 + - pip install --upgrade 'setuptools<45.0.0' + - pip install pyinstaller - python docker/set_build.py - pip install -e . - pyinstaller --additional-hooks-dir=scripts/. --icon=icons/lbry256.ico -F -n lbrynet lbry/extras/cli.py