1 Star 0 Fork 28

markeryang / python-setuptools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bugfix-eliminate-random-order-in-metadata.patch 726 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 99ba862948c27f8851ae2131ff36daee0195ae4a Mon Sep 17 00:00:00 2001
From: chengzihan2 <chengzihan1111@163.com>
Date: Thu, 4 Jun 2020 17:29:07 +0800
Subject: [PATCH] bugfix eliminate random order in metadata
---
setuptools/dist.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setuptools/dist.py b/setuptools/dist.py
index f0f030b..d22e533 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -194,7 +194,7 @@ def write_pkg_file(self, file):
self.long_description_content_type
)
if self.provides_extras:
- for extra in self.provides_extras:
+ for extra in sorted(self.provides_extras):
write_field('Provides-Extra', extra)
--
2.23.0
1
https://gitee.com/markeryang/python-setuptools.git
git@gitee.com:markeryang/python-setuptools.git
markeryang
python-setuptools
python-setuptools
master

搜索帮助