Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
fix: disable the modern installer method in Poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony King committed Mar 20, 2023
1 parent db9d0fa commit c81f68d
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 101 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/wf-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Install dependencies
run: |
pip install 'poetry~=1.4.0'
# workaround faulty wheels in the wild
# https://github.com/python-poetry/poetry/issues/7686
poetry config installer.modern-installation false
poetry install
- name: Lint
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/wf-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Install dependencies
run: |
pip install 'poetry~=1.4.0'
# workaround faulty wheels in the wild
# https://github.com/python-poetry/poetry/issues/7686
poetry config installer.modern-installation false
- name: Build
run: poetry build -vv
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/wf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Install dependencies
run: |
pip install 'poetry~=1.4.0'
# workaround faulty wheels in the wild
# https://github.com/python-poetry/poetry/issues/7686
poetry config installer.modern-installation false
poetry install
- name: Test
Expand Down
Loading

0 comments on commit c81f68d

Please sign in to comment.