UV - バージョン不一致
pyproject.toml に required-version が設定されていない場合、AutoFixはUVバージョン0.11.19を使用します。
プロジェクトで異なるUVバージョンが必要な場合は、pyproject.toml で指定してください。例えば、AutoFixにUVバージョン0.10.3を使用させるには、以下を追加します。
pyproject.toml
[tool.uv]required-version = "==0.10.3"詳細はhttps://docs.astral.sh/uv/reference/settings/#required-versionを参照してください。