Skip to content

Commit 4e537c9

Browse files
committed
try python
1 parent 0ecb475 commit 4e537c9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎Makefile‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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:
4343
lint: mypy clippy
4444

4545
deps: .venv/$(VENV)/mypy
46-
.venv/$(VENV)/python3 ./build.py deps
46+
.venv/$(VENV)/python ./build.py deps
4747

4848
build: lint test
49-
.venv/$(VENV)/python3 ./build.py build
49+
.venv/$(VENV)/python ./build.py build
5050

5151
release: .venv/$(VENV)/mypy
52-
.venv/$(VENV)/python3 ./build.py buildr -- "$$TRIPLE"
52+
.venv/$(VENV)/python ./build.py buildr -- "$$TRIPLE"
5353

5454
ci: .venv/$(VENV)/mypy
55-
.venv/$(VENV)/python3 ./ci/release.py
55+
.venv/$(VENV)/python ./ci/release.py
5656

5757
test:
5858
cargo test --locked

0 commit comments

Comments
 (0)