From: Jakob Haufe <sur5r@debian.org>
Date: Tue, 10 Mar 2026 10:32:06 +0100
Subject: use-python3-in-justfile
Forwarded: not-needed

===================================================================
---
 justfile | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/justfile b/justfile
index c2869de..2f3c166 100644
--- a/justfile
+++ b/justfile
@@ -3,16 +3,16 @@
   just --list
 
 test *ARGS:
-    python -m manage check
-    python -m coverage run --source=django_tasks -m manage test --shuffle --noinput {{ ARGS }}
-    python -m coverage report
-    python -m coverage html
+    python3 -m manage check
+    python3 -m coverage run --source=django_tasks -m manage test --shuffle --noinput {{ ARGS }}
+    python3 -m coverage report
+    python3 -m coverage html
 
 format:
-    python -m ruff check django_tasks tests --fix
-    python -m ruff format django_tasks tests
+    python3 -m ruff check django_tasks tests --fix
+    python3 -m ruff format django_tasks tests
 
 lint:
-    python -m ruff check django_tasks tests
-    python -m ruff format django_tasks tests --check
-    python -m mypy django_tasks tests
+    python3 -m ruff check django_tasks tests
+    python3 -m ruff format django_tasks tests --check
+    python3 -m mypy django_tasks tests
