Skip to content

Commit da3ce69

Browse files
committed
Modify Python deps resolution to use venv.
1 parent 96b636e commit da3ce69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ version ?= 1.0.1-pre.0
33
ci: deps lint
44

55
deps:
6-
pip3 install -r requirements.txt
6+
python3 -m venv .venv
7+
. .venv/bin/activate
8+
python3 -m pip install -r requirements.txt
79

810
lint:
911
yamllint action.yml .github/workflows/*.yaml

0 commit comments

Comments
 (0)