-
-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,10 @@ | |
* | ChatGPT <https://chatgpt.com> | ||
* | czyt <[email protected]> | ||
* | zouri <[email protected]> | ||
* | yongxiang <[email protected]> | ||
* | | ||
* Created On : <2023-08-28> | ||
* Last Modified : <2024-12-06> | ||
* Last Modified : <2024-12-08> | ||
* | ||
* chsrc: Change Source —— 全平台通用命令行换源工具 | ||
* ------------------------------------------------------------*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,11 @@ | |
* SPDX-License-Identifier: GPL-3.0-or-later | ||
* ------------------------------------------------------------- | ||
* File Authors : Aoran Zeng <[email protected]> | ||
* Contributors : Nul None <[email protected]> | ||
* Contributors : yongxiang <[email protected]> | ||
* | | ||
* Created On : <2023-09-03> | ||
* Major Revision : 1 | ||
* Last Modified : <2024-11-22> | ||
* Last Modified : <2024-12-08> | ||
* ------------------------------------------------------------*/ | ||
|
||
static SourceProvider_t UpstreamPython = | ||
|
@@ -15,7 +16,7 @@ static SourceProvider_t UpstreamPython = | |
}; | ||
|
||
/** | ||
* @update 2024-09-14 | ||
* @update 2024-12-08 | ||
* @note 不要添加Zju,浙大的pypi在校外访问会自动转向Tuna | ||
*/ | ||
static Source_t pl_python_sources[] = | ||
|
@@ -28,7 +29,7 @@ static Source_t pl_python_sources[] = | |
{&Tuna, "https://pypi.tuna.tsinghua.edu.cn/simple"}, | ||
{&Ali, "https://mirrors.aliyun.com/pypi/simple/"}, | ||
{&Nju, "https://mirror.nju.edu.cn/pypi/web/simple"}, | ||
{&Pku, "https://mirrors.pku.edu.cn/pypi/web/simple"}, | ||
{&Pku, "https://mirrors.pku.edu.cn/pypi/web/simple"}, | ||
{&Tencent, "https://mirrors.cloud.tencent.com/pypi/simple"}, | ||
// {&Tencent_Intra, "https://mirrors.cloud.tencentyun.com/pypi/simple"}, | ||
{&Huawei, "https://mirrors.huaweicloud.com/repository/pypi/simple"}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,28 @@ | |
* SPDX-License-Identifier: GPL-3.0-or-later | ||
* ------------------------------------------------------------- | ||
* File Authors : Aoran Zeng <[email protected]> | ||
* Contributors : Yangmoooo <[email protected]> | ||
* | yongxiang <[email protected]> | ||
* Contributors : Yangmoooo <[email protected]> | ||
* | yongxiang <[email protected]> | ||
* | | ||
* Created On : <2023-09-10> | ||
* Last Modified : <2024-12-07> | ||
* Last Modified : <2024-12-08> | ||
* ------------------------------------------------------------*/ | ||
|
||
/** | ||
* @update 2023-09-10 | ||
* @update 2024-12-08 | ||
* @note 这些链接将会在setsrc函数中补充完整 | ||
*/ | ||
static Source_t wr_anaconda_sources[] = | ||
{ | ||
{&UpstreamProvider, "https://repo.anaconda.com/"}, | ||
{&Nju, "https://mirror.nju.edu.cn/anaconda/"}, | ||
{&Bjtu, "https://mirror.bjtu.edu.cn/anaconda/"}, | ||
{&Pku, "https://mirrors.pku.edu.cn/anaconda/"}, | ||
{&Njtech, "https://mirrors.njtech.edu.cn/anaconda/"}, | ||
{&Bjtu, "https://mirror.bjtu.edu.cn/anaconda/"}, | ||
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/anaconda/"}, | ||
{&Bfsu, "https://mirrors.bfsu.edu.cn/anaconda/"}, | ||
{&Zju, "https://mirrors.zju.edu.cn/anaconda/"}, | ||
{&Sjtug_Zhiyuan, "https://mirror.sjtu.edu.cn/anaconda"} | ||
{&Sjtug_Zhiyuan, "https://mirror.sjtu.edu.cn/anaconda"}, | ||
{&Pku, "https://mirrors.pku.edu.cn/anaconda/"}, | ||
{&NJTech, "https://mirrors.njtech.edu.cn/anaconda/"}, | ||
}; | ||
def_sources_n(wr_anaconda); | ||
|
||
|