Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/mahoraga/_core/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ class _PyPI(pydantic.BaseModel):
"https://mirrors.aliyun.com/pypi/web/",
"https://mirrors.cloud.tencent.com/pypi/",
"https://mirrors.huaweicloud.com/repository/pypi/",
"https://mirrors.hust.edu.cn/pypi/web/",
"https://mirrors.pku.edu.cn/pypi/web/",
"https://mirrors.sustech.edu.cn/pypi/web/",
])
Expand All @@ -279,6 +280,7 @@ class _Uv(pydantic.BaseModel):
"https://mirror.nyist.edu.cn/github-release/astral-sh/uv/",
"https://mirrors.ustc.edu.cn/github-release/astral-sh/uv/",
"https://github.com/astral-sh/uv/releases/download/",
"https://releases.astral.sh/github/uv/releases/download/",
])


Expand Down Expand Up @@ -310,6 +312,7 @@ class _Upstream(pydantic.BaseModel, **_model_config):
"https://cdn.npmmirror.com/binaries/python-build-standalone/",
"https://mirrors.ustc.edu.cn/github-release/astral-sh/python-build-standalone/",
"https://github.com/astral-sh/python-build-standalone/releases/download/",
"https://releases.astral.sh/github/python-build-standalone/releases/download/",
])
uv: _Uv = _Uv()
backup: set[str] = {
Expand All @@ -318,6 +321,7 @@ class _Upstream(pydantic.BaseModel, **_model_config):
"github.com",
"prefix.dev",
"pypi.org",
"releases.astral.sh",
"www.python.org",
}

Expand Down