File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ clobber: clean
2626 rm -v -rf -- .venv/
2727
2828.venv/$(VENV ) /pip :
29- python3 -m venv -- .venv
29+ python -m venv -- .venv
3030
3131.venv/$(VENV ) /mypy : .venv/$(VENV ) /pip
3232 ' $<' install --upgrade --requirement requirements.txt -- mypy types-PyYAML types-toml types-Jinja2
@@ -43,16 +43,16 @@ clippy:
4343lint : mypy clippy
4444
4545deps : .venv/$(VENV ) /mypy
46- .venv/$(VENV ) /python3 ./build.py deps
46+ .venv/$(VENV ) /python ./build.py deps
4747
4848build : lint test
49- .venv/$(VENV ) /python3 ./build.py build
49+ .venv/$(VENV ) /python ./build.py build
5050
5151release : .venv/$(VENV ) /mypy
52- .venv/$(VENV ) /python3 ./build.py buildr -- " $$ TRIPLE"
52+ .venv/$(VENV ) /python ./build.py buildr -- " $$ TRIPLE"
5353
5454ci : .venv/$(VENV ) /mypy
55- .venv/$(VENV ) /python3 ./ci/release.py
55+ .venv/$(VENV ) /python ./ci/release.py
5656
5757test :
5858 cargo test --locked
You can’t perform that action at this time.
0 commit comments