Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/features/cicd.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ see [Publishing to PyPI](./publishing.md) and [Documentation with MkDocs](./mkdo
Additionally, all workflows check for compatibility with multiple Python
versions if `tox` is set to `"y"`.

# How to trigger a release?
## How to trigger a release?

To trigger a new release, navigate to your repository on GitHub, click `Releases` on the right, and then select `Draft
a new release`. If you fail to find the button, you could also directly visit
Expand Down
6 changes: 3 additions & 3 deletions docs/features/linting.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ preview = true
"tests/*" = ["S101"]
```

# mypy
## mypy

[mypy](https://mypy.readthedocs.io/en/stable/) is used for static type checking, and it's configuration can be edited in `pyproject.toml`.

Expand All @@ -85,7 +85,7 @@ exclude = [
]
```

# ty
## ty

[ty](https://docs.astral.sh/ty/) is an extremely fast type checker (and language server) that can be used instead of mypy, and it's configuration can be edited in `pyproject.toml`.

Expand All @@ -95,7 +95,7 @@ python = "./.venv"
python-version = "3.9"
```

# deptry
## deptry

[deptry](https://github.com/fpgmaas/deptry) is used to check the code for dependency issues, and it can be configured by adding a `[tool.deptry]` section in `pyproject.toml`. For more information, see [this section](https://deptry.com/usage/#configuration) documentation of deptry.

Expand Down
Loading