Skip to content

Commit 4fb09f5

Browse files
committed
Using poetry's preferred installation method to hopefully get around the SolverProblemError.
1 parent f47f14a commit 4fb09f5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install poetry==1.0.2
23+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
24+
python get-poetry.py --version 1.0.2
2425
poetry install
2526
- name: Lint with flake8
2627
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
- name: Install Poetry
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install poetry==1.0.2
23+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
24+
python get-poetry.py --version 1.0.2
2425
poetry install
2526
- name: Poetry - Set Version & Build
2627
run: |

0 commit comments

Comments
 (0)