We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cff92a commit 0564b40Copy full SHA for 0564b40
2 files changed
Makefile
@@ -3,6 +3,11 @@
3
venv:
4
./scripts/setup_venv.sh
5
6
+# Compile requirements
7
+.PHONY: reqs
8
+reqs:
9
+ pip-compile --extra=dev
10
+
11
# Install dependencies
12
.PHONY: deps
13
deps:
README.md
@@ -175,6 +175,7 @@ A Makefile is provided as an interface to various utility scripts:
175
176
- `make docs` to generate the package documentation.
177
- `make venv` to setup a venv environment (see [`scripts/setup_venv.sh`](scripts/setup_venv.sh)).
178
+- `make reqs` to compile requirements.
179
- `make deps` to install requirements in [`requirements.txt`](requirements.txt) and the local package.
180
- `make tag` to add and push a new Git tag by incrementing the version.
181
0 commit comments