Skip to content

Commit 733487e

Browse files
committed
fix makefile
1 parent 0d7b022 commit 733487e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ help:
1212
@echo
1313
@false
1414

15-
.venv:
15+
$(VENV_PATH):
1616
python -m venv $(VENV_PATH)
1717
$(VENV_PATH)/bin/pip install tox tox-uv
1818

19-
dist: .venv
19+
dist: $(VENV_PATH)
2020
rm -rf dist dist-serverless build
2121
$(VENV_PATH)/bin/pip install wheel setuptools
2222
$(VENV_PATH)/bin/python setup.py sdist bdist_wheel
2323
.PHONY: dist
2424

25-
apidocs: .venv
25+
apidocs: $(VENV_PATH)
2626
@$(VENV_PATH)/bin/pip install --editable .
2727
@$(VENV_PATH)/bin/pip install -U -r ./requirements-docs.txt
2828
rm -rf docs/_build

0 commit comments

Comments
 (0)