Change default cache-dependency-glob (#352)

To support more users by default we should support popular dependency
file formats. A quick GitHub search shows ~40k uses of `constraint.txt`
and ~16k uses of `requirements.in`.

Closes: #261
This commit is contained in:
Kevin Stillhammer
2025-04-24 15:18:27 +02:00
committed by GitHub
parent a0f9da6273
commit aadfaf08d6
2 changed files with 4 additions and 2 deletions

View File

@ -210,7 +210,8 @@ changes. If you use relative paths, they are relative to the repository root.
> The default is
> ```yaml
> cache-dependency-glob: |
> **/requirements*.txt
> **/*(requirements|constraints)*.(txt|in)
> **/pyproject.toml
> **/uv.lock
> ```