Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 7a97081

Browse files
committed
ci: fix incorrect python version being used in github workflow
1 parent 80ca7b0 commit 7a97081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
python-version: ["3.12"]
1313
steps:
1414
- uses: actions/checkout@v4
15-
- run: pipx install poetry==1.7.1
1615
- uses: actions/setup-python@v5
1716
with:
1817
python-version: ${{ matrix.python-version }}
1918
cache: poetry
19+
- run: pip install poetry==1.7.1
2020
- name: Install dependencies
2121
run: poetry install --with=dev
2222
- name: Lint code

0 commit comments

Comments
 (0)