From e1b6d1b66eef11af163af5be2ee33dddce69376a Mon Sep 17 00:00:00 2001 From: Mark Bonicillo Date: Wed, 1 Nov 2023 15:11:51 -0700 Subject: [PATCH] Cleanup makefile --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 83b59381..5e01cfef 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ SHELL = /bin/bash VENV = venv-hnx -PYTHON_VENV = $(VENV)/bin/python3 PYTHON3 = python3 @@ -50,7 +49,7 @@ version-deps: ### Documentation docs-deps: - @$(PYTHON3) -m pip install -e .'[documentation]' --use-pep517 + @$(PYTHON3) -m pip install .'[documentation]' --use-pep517 .PHONY: docs-deps @@ -78,7 +77,7 @@ venv: clean-venv @$(PYTHON3) -m venv $(VENV); test-deps: - @$(PYTHON3) -m pip install -e .'[testing]' --use-pep517 + @$(PYTHON3) -m pip install .'[testing]' --use-pep517 all-deps: @$(PYTHON3) -m pip install -e .'[all]' --use-pep517