Skip to content

Commit 783cd96

Browse files
committed
build: 💚 Fix building of matrix build via poetry
See also: microsoft/debugpy#1246 (comment)
1 parent 601fe47 commit 783cd96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
virtualenvs-path: .venv
5656
installer-parallel: true
5757
- name: Install library
58-
run: poetry install --no-interaction --with dev --all-extras
58+
run: |
59+
poetry config installer.modern-installation false
60+
poetry install --no-interaction --with dev --all-extras
5961
- name: Test SpectraFit
6062
run: poetry run pytest
6163
- name: Codecov

0 commit comments

Comments
 (0)