Fix `cache-keys` typo in `tags = true` (#8422)

Closes https://github.com/astral-sh/uv/issues/8421.
This commit is contained in:
Charlie Marsh 2024-10-21 13:35:22 -04:00 committed by GitHub
parent 351ad84eaf
commit e8b8daf0fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ key to include the tags:
```toml title="pyproject.toml" ```toml title="pyproject.toml"
[tool.uv] [tool.uv]
cache-keys = [{ git = { commit = true, tag = true } }] cache-keys = [{ git = { commit = true, tags = true } }]
``` ```
Similarly, if a project reads from a `requirements.txt` to populate its dependencies, you can add Similarly, if a project reads from a `requirements.txt` to populate its dependencies, you can add