Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 'latest'
# If you use a version newer than 2.2.1, the Poetry installation will fail because,
# starting with version 2.3.0, Poetry no longer supports Python 3.9
version: '2.2.1'
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down Expand Up @@ -88,7 +90,9 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 'latest'
# If you use a version newer than 2.2.1, the Poetry installation will fail because,
# starting with version 2.3.0, Poetry no longer supports Python 3.9
version: '2.2.1'
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down Expand Up @@ -147,7 +151,9 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 'latest'
# If you use a version newer than 2.2.1, the Poetry installation will fail because,
# starting with version 2.3.0, Poetry no longer supports Python 3.9
version: '2.2.1'
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down
Loading