From 713d65b3d2da2f2083ef89a4c4e888cf2a19b35d Mon Sep 17 00:00:00 2001 From: Wyatt Stanke <47758296+Wyatt-Stanke@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:10:34 -0500 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20create=20a=20venv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/library/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/library/setup/action.yml b/.github/library/setup/action.yml index 033e1557..6b311a58 100644 --- a/.github/library/setup/action.yml +++ b/.github/library/setup/action.yml @@ -33,5 +33,5 @@ runs: path: ~/.local key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }} - name: Install dependencies - run: poetry install + run: POETRY_VIRTUALENVS_CREATE=false poetry install shell: bash