From 14ee6d6cc59c4223792df5ac500eb5c718296ba7 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Tue, 20 Aug 2024 18:12:34 -0700 Subject: [PATCH 1/2] Added setuptools to pip-package in Makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 42cc6b320..5d4a12e6a 100644 --- a/Makefile +++ b/Makefile @@ -72,4 +72,5 @@ build-docs: pip-package: pip install wheel + pip install setuptools python setup.py sdist bdist_wheel From b711225de942908a859de43d550e2fd6f7cfb6c5 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Tue, 20 Aug 2024 18:28:40 -0700 Subject: [PATCH 2/2] Added format section to Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5d4a12e6a..a32fd53c5 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,10 @@ git-pr: build-docs: @cd ./docs ; python make_params.py; jb build ./book +format: + black . -l 79 + linecheck . --fix + pip-package: pip install wheel pip install setuptools