Skip to content

Commit 0564b40

Browse files
committed
chore: add reqs target in Makefile
1 parent 9cff92a commit 0564b40

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
venv:
44
./scripts/setup_venv.sh
55

6+
# Compile requirements
7+
.PHONY: reqs
8+
reqs:
9+
pip-compile --extra=dev
10+
611
# Install dependencies
712
.PHONY: deps
813
deps:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ A Makefile is provided as an interface to various utility scripts:
175175

176176
- `make docs` to generate the package documentation.
177177
- `make venv` to setup a venv environment (see [`scripts/setup_venv.sh`](scripts/setup_venv.sh)).
178+
- `make reqs` to compile requirements.
178179
- `make deps` to install requirements in [`requirements.txt`](requirements.txt) and the local package.
179180
- `make tag` to add and push a new Git tag by incrementing the version.
180181

0 commit comments

Comments
 (0)