From 347511511a6f15d43b8c50975a91648944d388e4 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Fri, 8 Sep 2023 06:17:22 -0400 Subject: [PATCH] ci: inject setuptools into poetry install for Windows --- .github/actions/setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 1dc45ac1..feb8deda 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,6 +1,6 @@ --- name: Setup Action -description: Run "poetry install" +description: Install requested pipx dependencies, configure the system python, and install poetry and the package dependencies inputs: os: @@ -47,6 +47,7 @@ runs: for tool in "poetry==${{ inputs.poetry-version }}" ${{ inputs.pipx-packages }}; do pipx install $tool done + pipx inject poetry setuptools==68.1.2 shell: bash - name: Debug pipx