Skip to content

Commit 8ff98cd

Browse files
tweaks
1 parent c056a1b commit 8ff98cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Not all contributions need to start with an issue, such as typo fixes in documen
88

99
We adhere to Django's Code of Conduct in all interactions and expect all contributors to do the same. Please read the [Code of Conduct](https://www.djangoproject.com/conduct/) before contributing.
1010

11-
### Requirements
11+
## Requirements
1212

1313
- [uv](https://github.com/astral-sh/uv) - Modern Python toolchain that handles:
1414
- Python version management and installation
@@ -42,10 +42,9 @@ for i, line in enumerate(output_list):
4242
]]] -->
4343
Available recipes:
4444
bootstrap
45-
coverage *ARGS
45+
coverage
4646
lint
4747
lock *ARGS
48-
manage *COMMAND
4948
test *ARGS
5049
testall *ARGS
5150
types *ARGS
@@ -62,6 +61,7 @@ All commands below will contain the full command as well as its `just` counterpa
6261
The following instructions will use `uv` and assume a Unix-like operating system (Linux or macOS).
6362
6463
Windows users will need to adjust commands accordingly, though the core workflow remains the same.
64+
6565
Alternatively, any Python package manager that supports installing from `pyproject.toml` ([PEP 621](https://peps.python.org/pep-0621/)) can be used. If not using `uv`, ensure you have Python installed from [python.org](https://www.python.org/).
6666
6767
1. Fork the repository and clone it locally.
@@ -80,23 +80,23 @@ just bootstrap
8080
8181
The project uses [`pytest`](https://docs.pytest.org/) for testing and [`nox`](https://nox.thea.codes/) to run the tests in multiple environments.
8282
83-
To run the test suite against the default versions of Python (lower bound of supported versions) and Django (lower bound of LTS versions), run:
83+
To run the test suite against the default versions of Python (lower bound of supported versions) and Django (lower bound of LTS versions):
8484
8585
```bash
8686
uv run nox --session test
8787
# or
8888
just test
8989
```
9090
91-
To run the test suite against the entire matrix of supported versions of Python and Django, run:
91+
To run the test suite against the entire matrix of supported versions of Python and Django:
9292
9393
```bash
9494
uv run nox --session tests
9595
# or
9696
just testall
9797
```
9898
99-
Both can be passed additional arguments that will be provided to pytest:
99+
Both can be passed additional arguments that will be provided to `pytest`:
100100
101101
```bash
102102
uv run nox --session test -- -v --last-failed

0 commit comments

Comments
 (0)