From 25d4027e9c71612a9ff00c45daec81c0f0c23eaa Mon Sep 17 00:00:00 2001 From: Tim Walter Date: Wed, 12 Jun 2024 13:39:31 +0200 Subject: [PATCH] Create virtualenvs inside the project directory and disable progress bars for PIP --- .github/workflows/package-windows.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/package-windows.yml b/.github/workflows/package-windows.yml index 576a244..c2e3428 100644 --- a/.github/workflows/package-windows.yml +++ b/.github/workflows/package-windows.yml @@ -4,6 +4,9 @@ on: push: branches: ["master"] +env: + PIP_PROGRESS_BAR: "off" + jobs: build-and-deploy: runs-on: windows-latest @@ -22,6 +25,7 @@ jobs: shell: pwsh # For Linux, use bash run: | pip install poetry + poetry config virtualenvs.in-project true poetry self add poetry-pyinstaller-plugin poetry install