We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3209b93 commit 8c8d3a7Copy full SHA for 8c8d3a7
1 file changed
Makefile
@@ -1,7 +1,6 @@
1
# You can set these variables from the command line.
2
CPYTHON_PATH = ../cpython
3
PYTHON = python3
4
-PACKAGE_ABS_PATH = $(shell pwd)/$(shell find dist/python-docs-theme-*.tar.gz)
5
SPHINXOPTS =
6
7
@@ -15,10 +14,11 @@ help:
15
14
.PHONY: venv
16
venv:
17
$(PYTHON) -m pip install build
+ rm -rf dist/
18
$(PYTHON) -m build
19
cd $(CPYTHON_PATH)/Doc \
20
&& make venv \
21
- && ./venv/bin/pip install $(PACKAGE_ABS_PATH)
+ && ./venv/bin/pip install $(CURDIR)/dist/python_docs_theme-*.tar.gz
22
23
.PHONY: html
24
html: venv
0 commit comments