Skip to content

Commit

Permalink
Pin the Poetry version on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Feb 11, 2025
1 parent 696c74d commit c3df649
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
poetry-version: ['1.8.5']

steps:
- uses: actions/checkout@v2
Expand All @@ -18,8 +19,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- uses: abatilo/actions-poetry@v4
with:
poetry-version: ${{ matrix.poetry-version }}

- name: Check dependencies
run: make doctor
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python 3.11.5
poetry 1.8.2
poetry 1.8.5

0 comments on commit c3df649

Please sign in to comment.