We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37d35b commit d980a17Copy full SHA for d980a17
Makefile
@@ -28,8 +28,6 @@ dockerpush:
28
29
clean:
30
$(MAKE) dockerclean
31
- $(MAKE) distclean
32
- $(MAKE) venv-clean
33
rm -fr .env
34
rm -fr .pytest_cache
35
rm -fr tests/__pycache__
@@ -44,13 +42,17 @@ maintainer-clean:
44
42
@echo 'This command is intended for maintainers to use; it'
45
43
@echo 'deletes files that may need special tools to rebuild.'
46
$(MAKE) distclean
+ $(MAKE) venv-clean
47
48
install-dev:
49
$(VENV)/pip install -r requirements-dev.txt
50
51
install-dep:
52
$(VENV)/pip install -r requirements.txt
53
+uninstall-dep:
54
+ $(VENV)/pip uninstall -r requirements.txt
55
+
56
install:
57
$(MAKE) install-dep
58
$(VENV)/pip install .
0 commit comments