Skip to content

Commit f061eee

Browse files
authored
Update "Poetry" installation in CI. (#69)
Signed-off-by: Thomas Mansencal <[email protected]>
1 parent ff3f524 commit f061eee

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/configuration-artifacts.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ jobs:
3030
sudo apt-get --yes install graphviz graphviz-dev
3131
- name: Install Poetry
3232
run: |
33-
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
34-
python get-poetry.py
33+
curl -sSL https://install.python-poetry.org | POETRY_HOME=$HOME/.poetry python3 -
3534
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
3635
shell: bash
3736
- name: Install Package Dependencies

.github/workflows/continuous-integration-quality-unit-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
matrix:
1010
os: [macOS-latest, ubuntu-20.04, windows-latest]
1111
python-version: [3.8, 3.9, '3.10']
12+
exclude:
13+
- os: windows-latest
14+
python-version: 3.8
1215
fail-fast: false
1316
runs-on: ${{ matrix.os }}
1417
steps:
@@ -28,8 +31,7 @@ jobs:
2831
python-version: ${{ matrix.python-version }}
2932
- name: Install Poetry
3033
run: |
31-
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
32-
python get-poetry.py
34+
curl -sSL https://install.python-poetry.org | POETRY_HOME=$HOME/.poetry python3 -
3335
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
3436
shell: bash
3537
- name: Install Package Dependencies

0 commit comments

Comments
 (0)