Skip to content

Commit 5a1d706

Browse files
Align CONTRIBUTING commands with python3 usage
Co-authored-by: Shri Sukhani <shrisukhani@users.noreply.github.com>
1 parent 919e9a3 commit 5a1d706

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thanks for contributing! This guide keeps local development and CI behavior alig
1010
## Local setup
1111

1212
```bash
13-
python -m pip install -e . pytest ruff build
13+
python3 -m pip install -e . pytest ruff build
1414
```
1515

1616
Or with Make:
@@ -31,8 +31,8 @@ make install
3131
### Linting and formatting
3232

3333
```bash
34-
python -m ruff check .
35-
python -m ruff format --check .
34+
python3 -m ruff check .
35+
python3 -m ruff format --check .
3636
```
3737

3838
Or:
@@ -45,7 +45,7 @@ make format-check
4545
### Tests
4646

4747
```bash
48-
python -m pytest -q
48+
python3 -m pytest -q
4949
```
5050

5151
Or:

0 commit comments

Comments
 (0)