From 42f7cf869d306019595a5f24318342c498d3ae42 Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 24 Mar 2023 00:20:57 -0500 Subject: [PATCH] Fix `pip` installation of matrix Poetry version Excluding the .0 means that it just installed the latest minor version --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 25368df..54a61b7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -74,7 +74,7 @@ jobs: - name: Install Poetry ${{ matrix.poetry-version }} run: | - pip install "poetry~=${{ matrix.poetry-version }}" + pip install "poetry~=${{ matrix.poetry-version }}.0" # Ensure that Poetry is not upgraded past the version we are testing poetry add "poetry@~${{ matrix.poetry-version }}" --lock