We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 919e9a3 commit 5a1d706Copy full SHA for 5a1d706
CONTRIBUTING.md
@@ -10,7 +10,7 @@ Thanks for contributing! This guide keeps local development and CI behavior alig
10
## Local setup
11
12
```bash
13
-python -m pip install -e . pytest ruff build
+python3 -m pip install -e . pytest ruff build
14
```
15
16
Or with Make:
@@ -31,8 +31,8 @@ make install
31
### Linting and formatting
32
33
34
-python -m ruff check .
35
-python -m ruff format --check .
+python3 -m ruff check .
+python3 -m ruff format --check .
36
37
38
Or:
@@ -45,7 +45,7 @@ make format-check
45
### Tests
46
47
48
-python -m pytest -q
+python3 -m pytest -q
49
50
51
0 commit comments