Skip to content

Commit 92007bc

Browse files
committed
install python before poetry
1 parent 8ea69cc commit 92007bc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/python-ci-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636

3737
steps:
3838
- uses: actions/checkout@v5
39-
- name: Install poetry
40-
run: make install-poetry
4139
- uses: actions/setup-python@v6
4240
with:
4341
python-version: 3.12
42+
- name: Install poetry
43+
run: make install-poetry
4444
- name: Install
4545
run: make docs-install
4646
- name: Build docs

.github/workflows/python-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151

5252
steps:
5353
- uses: actions/checkout@v5
54-
- name: Install poetry
55-
run: make install-poetry
5654
- uses: actions/setup-python@v6
5755
with:
5856
python-version: ${{ matrix.python }}
57+
- name: Install poetry
58+
run: make install-poetry
5959
- name: Install system dependencies
6060
run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
6161
- name: Install

.github/workflows/python-release-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131

3232
steps:
3333
- uses: actions/checkout@v5
34-
- name: Install poetry
35-
run: make install-poetry
3634
- uses: actions/setup-python@v6
3735
with:
3836
python-version: ${{ matrix.python }}
37+
- name: Install poetry
38+
run: make install-poetry
3939
- name: Install docs
4040
run: make docs-install
4141
- name: Build docs

0 commit comments

Comments
 (0)