Skip to content

Commit 5058372

Browse files
authored
Removed personal changes in Makefile
Removed --break-system-packages option from install and dev-install commands. Usually need this for my own machine.
1 parent 96a8fe9 commit 5058372

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ help:
1515
@grep -E '^[a-zA-Z_-]+:.*?# .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?# "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
1616

1717
install: # Install base requirements to run project
18-
$(PIP) install -r requirements.txt --break-system-packages
18+
$(PIP) install -r requirements.txt
1919

2020
dev-install: # Install developer requirements + base requirements
21-
$(PIP) install -r test-requirements.txt --break-system-packages
21+
$(PIP) install -r test-requirements.txt
2222

2323
setup: # Set up the project database
2424
$(PYTHON) manage.py migrate ${local_config}

0 commit comments

Comments
 (0)