Skip to content

Commit 517849b

Browse files
committed
build: added poetry run prefix to SPHINXBUILD default (alawys run make html with poetry)
1 parent b32094a commit 517849b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
poetry install
2828
- name: Build docs
2929
run: |
30-
poetry run make html
30+
make html
3131
- name: Upload build
3232
uses: actions/upload-artifact@v2-preview
3333
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ open:
1717

1818
# You can set these variables from the command line.
1919
SPHINXOPTS =
20-
SPHINXBUILD = sphinx-build
20+
SPHINXBUILD = poetry run sphinx-build
2121
PAPER =
2222
BUILDDIR = _build
2323

0 commit comments

Comments
 (0)