Skip to content

Commit

Permalink
Fix pip installation of matrix Poetry version
Browse files Browse the repository at this point in the history
Excluding the .0 means that it just installed the latest minor version
  • Loading branch information
zanieb committed Mar 24, 2023
1 parent aa0154f commit 42f7cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 42f7cf8

Please sign in to comment.