Skip to content
Merged
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
12 changes: 10 additions & 2 deletions docs/concepts/resolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -721,8 +721,16 @@ Values may also be specified for specific packages, e.g.,
exclude-newer-package = { setuptools = "2006-12-02T02:07:43Z" }
```

The same flag also accepts `<package>=false` to opt a package out of the `--exclude-newer`
restriction, e.g., to allow resolving packages from an index that does not publish upload times.
The package option also accepts `<package>=false` to opt a package out of the restriction, e.g.,
`--exclude-newer-package setuptools=false`, or:

```pyproject.toml
[tool.uv]
exclude-newer-package = { setuptools = false }
```

This is useful to temporarily use a newer version of package or to allow resolving a package from an
index that does not publish upload times.

Package-specific values will take precedence over global values.

Expand Down
Loading