Skip to content

Commit 27be9ad

Browse files
committed
update Makefile
1 parent 381b3ce commit 27be9ad

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ clean:
1818
venv:
1919
- virtualenv --python=$(shell which python3) --prompt '<venv:inoreader>' venv
2020

21-
deps:
22-
- pip install -U pip setuptools
23-
- pip install -r requirements.txt
21+
lock-requirements:
22+
- pip install pip-tools -q
23+
- pip-compile -o requirements.txt
24+
25+
deps: lock-requirements
26+
- pip-sync
27+
28+
build: lint test
29+
- python -m build

0 commit comments

Comments
 (0)