From 52a079cbcdfdec93e1d6468ba632b256536c0b1a Mon Sep 17 00:00:00 2001 From: William Valentin Date: Tue, 15 Jul 2025 13:37:52 -0700 Subject: [PATCH] Update Makefile to enhance setup-env with pipenv installation and pre-commit configuration --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 21b7da6..d22d45f 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ setup-env: - pipenv --python 3.13.5 - pipenv shell + pip3 install pipenv + pipenv --python 3.13 + pipenv shell --python 3.13 pipenv install --dev - pipenv run pre-commit install + pipenv run pre-commit install --install-hooks --overwrite pipenv run pre-commit autoupdate pipenv run pre-commit run --all-files build: