Detect redundant override-dependencies / constraint-dependencies in uv projects
Project description
uv-override-prune
Detect prunable override-dependencies / constraint-dependencies entries in uv projects.
Install
uv tool install uv-override-prune
Or run it without installing — useful for one-off checks:
uvx uv-override-prune
Usage
# Detect prunable entries (default)
uv-override-prune # checks ./pyproject.toml
uv-override-prune path/to/pyproject.toml # checks given file
# Remove prunable entries in place
uv-override-prune --fix
Example output:
=== override-dependencies (3 entries) ===
[KEEP] aiohttp>=3.13.5 3.13.3
[PRUNE] httpx>=0.1.0 0.28.1
[SKIP] foo==1.0 -
Run with --fix to prune entries marked [PRUNE].
Exit codes:
| Code | Meaning |
|---|---|
0 |
No prunable entries (or --fix succeeded) |
1 |
Prunable entries found (without --fix) |
2 |
pyproject.toml not found |
Why
uv lets you pin a transitive dependency version via [tool.uv] override-dependencies and constraint-dependencies. A common reason to reach for these is CVE mitigation: a vulnerability is disclosed in a transitive package, and you force the patched minimum version while waiting for direct deps to require it naturally. Once they catch up, the entry is no longer doing anything — but it's easy to forget which ones are still load-bearing, and stale overrides become a judgment cost at every audit or upgrade ("is this still needed, or just history?"). uv-override-prune answers that mechanically by checking whether each entry's lower bound is already satisfied by natural resolution.
Scope
- Targets entries in
[tool.uv]override-dependenciesandconstraint-dependencies. - Only entries whose specifier uses
>=and/or>are checked. Entries using==,~=,<,<=,!=(alone or mixed) are skipped. - One-at-a-time detection: removes each entry in a temp copy of
pyproject.toml, runsuv lock, and checks whether the natural resolution still satisfies the entry's specifier.
Known limitations
- Projects with a
[build-system]section may fail to lock in the temp dir if they depend on source files (e.g.setuptools.packages.find, Hatch dynamic version from source).[tool.uv.sources]path deps, workspace members, and[project] readmeare rewritten automatically; other build-backend-specific references are not. - One-at-a-time evaluation: if overrides interact (e.g. cascade redundancy, shared transitive deps), individual runs may miss some prunable entries. Re-run after applying removals to surface the next layer.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uv_override_prune-0.0.6.tar.gz.
File metadata
- Download URL: uv_override_prune-0.0.6.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b42935d5b597c4971a8f5b2136cb43d1579736a63c5a164d30a5f9e79e3cbae9
|
|
| MD5 |
8c6bb61867dc2b81eb452e5112d0e3f1
|
|
| BLAKE2b-256 |
21866be7504d5bfdb00ff63c6e5474125f99fe9645184e4aabc47923e2f46655
|
File details
Details for the file uv_override_prune-0.0.6-py3-none-any.whl.
File metadata
- Download URL: uv_override_prune-0.0.6-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b8f4dbcc68c5bd3a90c49d5e718bba766f755f12fed86196a66955799b5e47f
|
|
| MD5 |
69ef903e59a95fa8e14bf78787589a94
|
|
| BLAKE2b-256 |
d5c46e6cece1e398d44432a6ab36fdfe6723453aa910d459b3a2112e47daf4ca
|