Skip to content

Commit 278665e

Browse files
lawrence-u10dclaude
andcommitted
fix(deps): resolve packages from PyPI instead of Azure DevOps feed
The lockfile was resolving all packages from the Azure DevOps private feed, which requires authentication. CI lacks Azure credentials, causing lint failures (401 Unauthorized on mypy-extensions download). Add explicit PyPI index as default in pyproject.toml and regenerate the lockfile so all public packages resolve from PyPI. The Azure feed remains available via the uv-wrapper for local development when private packages are needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ddaeefc commit 278665e

2 files changed

Lines changed: 2365 additions & 2356 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ constraint-dependencies = [
4545
"pdfminer-six==20260107",
4646
]
4747

48+
[[tool.uv.index]]
49+
name = "pypi"
50+
url = "https://pypi.org/simple"
51+
default = true
52+
4853
[tool.pyright]
4954
pythonPlatform = "Linux"
5055
pythonVersion = "3.12"

0 commit comments

Comments
 (0)