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
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ To start developing, you can install all the necessary packages in your python e
make install
```

> **Note on dependency management**
>
> This project uses [uv](https://docs.astral.sh/uv/) with two constraints worth knowing:
>
> - **uv version**: a specific version range is required (see `pyproject.toml`). If uv refuses to run, update it with `uv self update`.
> - **Dependency cooldown**: packages published to PyPI less than 7 days ago are ignored during resolution, as a supply chain security measure.

When pushing commits, please use the project naming conventions, which are available in [this guide](https://www.conventionalcommits.org/en/v1.0.0/).
If you haven't respected these conventions, do a rebase before making the pull request.

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ language_tool_python = "language_tool_python.__main__:main"
requires = ["uv_build>=0.11.14,<0.12"]
build-backend = "uv_build"

[tool.uv]
exclude-newer = "7 days"
required-version = ">=0.11.25,<0.12"

[tool.ruff]
line-length = 88
include = ["src/**/*.py", "tests/**/*.py"]
Expand Down
112 changes: 58 additions & 54 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading