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 534b85d commit c1117d4Copy full SHA for c1117d4
Makefile
@@ -5,12 +5,15 @@ SHELL := /bin/bash
5
help:
6
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
7
8
-.PHONY: bootstrap
9
-bootstrap: ## Install build dependencies
+.PHONY: freeze-requirements
+freeze-requirements: ## Freeze requirements files
10
pip install -r requirements.txt
11
python -c "from notifications_utils.version_tools import copy_config; copy_config()"
12
- pip install --upgrade pip-tools
13
pip-compile requirements_for_test.in
+
14
+.PHONY: bootstrap
15
+bootstrap: ## Install build dependencies
16
+ pip install --upgrade pip-tools
17
pip install -r requirements_for_test.txt
18
19
.PHONY: build
0 commit comments