From 9bf03e8548f047726e53453cf6e34573e9e91a47 Mon Sep 17 00:00:00 2001 From: Daniel Willim Date: Tue, 18 Aug 2026 13:52:25 +0200 Subject: [PATCH] chore: declare public PyPI as the project's default package index Keeps uv.lock pointing at pypi.org when the lockfile is regenerated in environments configured with the internal mirror, which requires authentication and must not leak into this public repo's lockfile. --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a7185cc..fef6243 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,11 @@ dev = [ "keyring>=23.0", ] +[[tool.uv.index]] +name = "pypi" +url = "https://pypi.org/simple" +default = true + [tool.ruff] line-length = 120 target-version = "py310"