How to fix Python version incompatibility errors in uv
Understanding the Error
When you see an error like this:
error: The Python request from `.python-version` resolved to Python 3.9.1, which is incompatible with the project's Python requirement: `>=3.10`. Use `uv python pin` to update the `.python-version` file to a compatible version.
This means:
- Your project requires Python 3.10 or newer (specified in pyproject.toml)
- Your
.python-version
file is requesting Python 3.9.1 - This version conflict prevents uv from proceeding
Solution Options
Option 1: Update the .python-version
File
The simplest approach is to follow uv’s suggestion to update the .python-version
file, e.g.,
$ uv python pin 3.11
This will update the .python-version
file to use Python 3.10, the minimum version compatible with your project.
Option 2: Override the Python Version for a Single Command
If you don’t want to update the pinned version permanently, you can override it for a single command:
$ uv run --python 3.10 your_command
Option 3: Update Your Project’s Requirements
If you need to maintain Python 3.9.1 compatibility, you can modify your project’s requirements in pyproject.toml
:
[project]
# Change this line
requires-python = ">=3.9.1"
ℹ️
To see which Python versions are available on your system:
$ uv python list
If the version you need isn’t installed, uv can install it automatically:
$ uv python install 3.10
Last updated on