Skip to content

Commit

Permalink
Cleanup makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bonicim committed Nov 1, 2023
1 parent 7da6b3f commit e1b6d1b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
SHELL = /bin/bash

VENV = venv-hnx
PYTHON_VENV = $(VENV)/bin/python3
PYTHON3 = python3


Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e1b6d1b

Please sign in to comment.