Skip to content

Commit c6a5731

Browse files
committed
fix: install poetry deps into system Python in CI (closes #5)
The docs pipeline failed because poetry install creates a virtualenv, but the chart generation script ran with system Python — outside the venv — so scipy (and all other deps) were not found. Fix: poetry config virtualenvs.create false before install, so all packages install into the CI runner's system Python directly.
1 parent 197f9e7 commit c6a5731

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
run: |
3838
pip install --upgrade pip
3939
pip install poetry
40+
poetry config virtualenvs.create false
4041
poetry install --no-interaction
4142
pip install plotly kaleido investing-algorithm-framework
4243

0 commit comments

Comments
 (0)