Skip to content

Commit 285922f

Browse files
committed
Revert "Install poetry via pipx"
This reverts commit 72038d2. I thought this was the source of CI failures, but it was not
1 parent 72038d2 commit 285922f

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323

2424
- name: Install and configure poetry
2525
run: |
26-
python -m pip install pipx
27-
pipx install poetry
26+
python -m pip install poetry
2827
2928
- name: Prepare project for development
3029
run: |

.github/workflows/linters.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ jobs:
2020
with:
2121
python-version: "3.10"
2222

23-
- uses: extractions/setup-just@v1
24-
2523
- name: Install and configure poetry
2624
run: |
27-
python -m pip install pipx
28-
pipx install poetry
25+
python -m pip install poetry
26+
27+
- uses: extractions/setup-just@v1
2928

3029
- name: Prepare project for development
3130
run: |

.github/workflows/safety.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ jobs:
1616

1717
- name: Install and configure poetry
1818
run: |
19-
python -m pip install pipx
20-
pipx install poetry
19+
python -m pip install poetry
2120
2221
- name: Prepare project for development
2322
run: |
24-
just setup
23+
python -m poetry install
2524
2625
- name: Run safety dependency check
2726
run: python -m poetry run safety check --full-report

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727

2828
- name: Install and configure poetry
2929
run: |
30-
python -m pip install pipx
31-
pipx install poetry
30+
python -m pip install poetry
3231
3332
- uses: extractions/setup-just@v1
3433
env:

0 commit comments

Comments
 (0)