From 17d9369e758525a880dad0fe6fcd6eb1bfb77721 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Tue, 11 Oct 2022 10:07:03 +0100 Subject: [PATCH] Pin snok/install-poetry for now There is an issue with the latest version of this action, that's specific to Python 3.8 on Windows. Pinning to the (as of the time of writing) last-but-one version lets out tests work again. See #2568. --- .github/workflows/pythonpackage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 40685a56..4deab7ae 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -20,7 +20,8 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - name: Install and configure Poetry - uses: snok/install-poetry@v1 + # TODO: workaround for https://github.com/snok/install-poetry/issues/94 + uses: snok/install-poetry@v1.3.1 with: version: 1.1.11 virtualenvs-in-project: true