Pin all dependencies in pyproject.toml to their currently installed versions
Project description
pin-versions
A CLI tool and pre-commit hook that pins all unpinned dependencies in pyproject.toml to their currently installed versions.
Why pin versions?
Unpinned dependencies (e.g. requests instead of requests==2.31.0) mean your project silently picks up whatever version happens to be newest at install time. This causes real problems:
- Broken builds -- a new release of a dependency can introduce breaking changes or bugs that suddenly fail your CI or production deploys, even though your code hasn't changed.
- "Works on my machine" -- different team members install at different times and get different versions, leading to bugs that are impossible to reproduce.
- Non-reproducible deployments -- deploying the same commit twice can produce different behavior if a dependency was updated between deploys.
- Silent security risk -- without knowing exactly what you're running, auditing your dependency tree for vulnerabilities is guesswork.
Pinning gives you control: upgrades happen when you choose, not when a package author publishes.
How versions are resolved
pin-versions first checks what is currently installed in your virtual environment. For any unpinned package that isn't installed locally, the latest version is automatically fetched from PyPI.
A dependency will remain unpinned if:
- The package name doesn't match -- the name in
pyproject.tomldiffers from the distribution name (underscores vs hyphens, etc.) and can't be matched to an installed package. - PyPI lookup fails -- if the network request to PyPI errors out, the package is left as-is rather than guessing.
In all of these cases, pin-versions reports the unpinned packages so you can address them.
Pre-release versions
When fetching versions from PyPI, only stable (non-pre-release) versions are considered by default. Pre-release versions (alpha, beta, release candidates, dev builds) are filtered out. If you need to pin to a pre-release version, pass the --prereleases flag:
pin-versions --prereleases --fix
If a package has only pre-release versions on PyPI, pin-versions will fall back to the latest available version regardless of the --prereleases flag.
Installation
pip install pin-versions
Or with uv:
uv add pin-versions
Usage
Run in a project directory with a pyproject.toml and a virtual environment:
pin-versions
This pins dependencies in [project].dependencies, [project.optional-dependencies], and [dependency-groups].
By default, pin-versions runs in dry-run mode — it shows what would change without modifying the file. Use --fix to apply the pins.
Options
| Flag | Description |
|---|---|
--fix |
Apply changes to pyproject.toml (default is dry run) |
--operator, -o |
Version pin operator (default: ==). Supports >=, ~=, etc. |
--pyproject, -p |
Path to pyproject.toml (default: ./pyproject.toml) |
--venv |
Path to the virtual environment (default: .venv) |
--prereleases |
Include pre-release versions when fetching from PyPI |
Pre-commit hook
Add to your .pre-commit-config.yaml:
repos:
- repo: https://github.com/kjaymiller/pin-versions
rev: v0.1.0
hooks:
- id: pin-versions
Contributing
- Fork the repo and clone it locally.
- Create a virtual environment and install the project in editable mode:
uv venv && uv pip install -e ".[dev]"
- Create a branch for your changes:
git checkout -b my-feature
- Make your changes and ensure they work by running:
pin-versions --dry-run - Open a pull request against
main.
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 pin_versions-2026.3.6.tar.gz.
File metadata
- Download URL: pin_versions-2026.3.6.tar.gz
- Upload date:
- Size: 23.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27084daf47f8a078c860a0ae3e701ad62cc350028d878002b2882a8a2fed5a13
|
|
| MD5 |
69a7d326429c699eaa21c5ba21f064c1
|
|
| BLAKE2b-256 |
91e42aa002d9c6353125df7fa80bf1874dd680e41c76802e22ffe165d0d66007
|
Provenance
The following attestation bundles were made for pin_versions-2026.3.6.tar.gz:
Publisher:
publish.yml on kjaymiller/pin-versions
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pin_versions-2026.3.6.tar.gz -
Subject digest:
27084daf47f8a078c860a0ae3e701ad62cc350028d878002b2882a8a2fed5a13 - Sigstore transparency entry: 1154942136
- Sigstore integration time:
-
Permalink:
kjaymiller/pin-versions@98d5c09d516e89e1663570f72f993bb0f48a9a33 -
Branch / Tag:
refs/tags/2026.3.6 - Owner: https://github.com/kjaymiller
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98d5c09d516e89e1663570f72f993bb0f48a9a33 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pin_versions-2026.3.6-py3-none-any.whl.
File metadata
- Download URL: pin_versions-2026.3.6-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1548224ca29ed66aad8468fe787311646cdfa253c7942b1777faa83ae2912f9e
|
|
| MD5 |
a99ea72582c8983867f03fecaa667b98
|
|
| BLAKE2b-256 |
f6d4db231ddf8f7b90178b65bb63bb608820395feb3d9505fbcddd20cbdedf85
|
Provenance
The following attestation bundles were made for pin_versions-2026.3.6-py3-none-any.whl:
Publisher:
publish.yml on kjaymiller/pin-versions
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pin_versions-2026.3.6-py3-none-any.whl -
Subject digest:
1548224ca29ed66aad8468fe787311646cdfa253c7942b1777faa83ae2912f9e - Sigstore transparency entry: 1154942137
- Sigstore integration time:
-
Permalink:
kjaymiller/pin-versions@98d5c09d516e89e1663570f72f993bb0f48a9a33 -
Branch / Tag:
refs/tags/2026.3.6 - Owner: https://github.com/kjaymiller
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98d5c09d516e89e1663570f72f993bb0f48a9a33 -
Trigger Event:
release
-
Statement type: