From 3f8ddd336243e671dd270d7c6c662a3f440ff851 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 8 Aug 2023 09:02:49 -0500 Subject: [PATCH] chore: use pdm run --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index daef668..2a24ac9 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ lint: ## run pre-commit hooks pdm run pre-commit run --all || pdm run pre-commit run --all types: ## run mypy - mypy src/viv + pdm run mypy src/viv bump: ## update version and tag commit @echo "bumping to version => $(VERSION)" @@ -23,7 +23,7 @@ dev-install: ln -sf $(PWD)/src/viv/viv.py ~/.local/share/viv/viv.py docs: docs/index.md docs/viv.py ## build docs - mkdocs build + pdm run mkdocs build docs/viv.py: src/viv/viv.py cp $< $@