Skip to content

Commit

Permalink
Pull request #120: Cleanup makefile
Browse files Browse the repository at this point in the history
Merge in HYP/hypernetx from cleanup-makefile to develop

* commit 'e1b6d1b66eef11af163af5be2ee33dddce69376a':
  Cleanup makefile
  • Loading branch information
bonicim committed Nov 1, 2023
2 parents 7da6b3f + e1b6d1b commit 0fd55db
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 0fd55db

Please sign in to comment.