Skip to content
Open
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
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ python -m venv venv

```bash
python -m pip install -r test-requirements.txt
python -m pip install --group dev
python -m pip install -e .
hash -r # This resets shell PATH cache, not necessary on Windows
```
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ reports = ["lxml"]
install-types = ["pip"]
faster-cache = ["orjson"]

[dependency-groups]
dev = [
# Not strictly needed for building per se, but pip-compile from this package is needed if you want to update the requirement files. (Word on the street is you can also use uv pip compile instead.):
"pip-tools>=7.5.1",
"pip<25.3", # workaround for this problem until its fix gets released: https://github.com/jazzband/pip-tools/pull/2253
]

[project.urls]
Homepage = "https://www.mypy-lang.org/"
Documentation = "https://mypy.readthedocs.io/en/stable/index.html"
Expand Down