From e6b5d01db74eef7a686929d7ca2314441b338449 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Fri, 6 May 2022 02:12:35 +0100 Subject: [PATCH] Fix being unable to install with no `extras` Regression introduced in #4, see https://github.com/matrix-org/setup-python-poetry/pull/4#discussion_r866423755 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 50481d2..4ed92b1 100644 --- a/action.yml +++ b/action.yml @@ -89,7 +89,7 @@ runs: - name: Install project (no extras) if: inputs.extras == '' - run: poetry install --no-interaction --no-root + run: poetry install --no-interaction shell: bash - name: Install project with --extras=${{ inputs.extras }}