From ff1a8bf6e9b59f01217ef44fb29495d5b5cf3477 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 5 Oct 2019 16:07:34 -0700 Subject: [PATCH] update makefile to use poetry for more things --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6219c1e6..de491e1f 100644 --- a/Makefile +++ b/Makefile @@ -11,11 +11,11 @@ clean: rm -f *.html html: - mkdocs serve + poetry run mkdocs serve # Build GitHub Page from docs docs: - mkdocs gh-deploy + poetry run mkdocs gh-deploy format: ## check style with flake8 poetry run black features jrnl @@ -31,7 +31,7 @@ dist: clean ## builds source and wheel package release: dist ## package and upload a release poetry publish - mkdocs gh-deploy + poetry run mkdocs gh-deploy install: clean ## install the package to the active Python's site-packages poetry install