Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
default: help
@echo
@echo 'Enable direnv in your shell to use the `make` command: `direnv allow`'
@echo 'Or use `python scripts/make ARGS` to run the commands/tasks directly.'
@echo 'Or use `python3 scripts/make ARGS` to run the commands/tasks directly.'

.DEFAULT_GOAL: default

Expand All @@ -32,4 +32,4 @@ actions = \

.PHONY: $(actions)
$(actions):
@python scripts/make "$@"
@python3 scripts/make "$@"
2 changes: 1 addition & 1 deletion scripts/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def setup() -> None:
print("Installing dependencies (default environment)")
default_venv = Path(".venv")
if not default_venv.exists():
_shell("uv venv --python python")
_shell("uv venv --python python3")
_uv_install(default_venv)

if PYTHON_VERSIONS:
Expand Down
Loading