See https://github.com/zanieb/toml-regression-1 for a simple reproduction In 0.8.19 ``` TOML parse error at line 4, column 1 | 4 | python-multipart = "https://example.com/bar.whl" | ^ duplicate key `python-multipart` in table `tool.uv.sources` ``` In 0.9.2 ``` TOML parse error at line 4, column 1 | 4 | python-multipart = "https://example.com/bar.whl" | ^^^^^^^^^^^^^^^^ duplicate key ``` It seems okay to avoid repeating `python-multipart` but the "table ..." part seems pretty helpful. Originally discovered at https://github.com/astral-sh/uv/pull/14571#discussion_r2213787884