Skip to content

Commit d980a17

Browse files
committed
Add the uninstall-dep make target
1 parent d37d35b commit d980a17

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ dockerpush:
2828

2929
clean:
3030
$(MAKE) dockerclean
31-
$(MAKE) distclean
32-
$(MAKE) venv-clean
3331
rm -fr .env
3432
rm -fr .pytest_cache
3533
rm -fr tests/__pycache__
@@ -44,13 +42,17 @@ maintainer-clean:
4442
@echo 'This command is intended for maintainers to use; it'
4543
@echo 'deletes files that may need special tools to rebuild.'
4644
$(MAKE) distclean
45+
$(MAKE) venv-clean
4746

4847
install-dev:
4948
$(VENV)/pip install -r requirements-dev.txt
5049

5150
install-dep:
5251
$(VENV)/pip install -r requirements.txt
5352

53+
uninstall-dep:
54+
$(VENV)/pip uninstall -r requirements.txt
55+
5456
install:
5557
$(MAKE) install-dep
5658
$(VENV)/pip install .

0 commit comments

Comments
 (0)