cloud-init/bugfix-sort-requirements.patch

28 lines
563 B
Diff
Raw Normal View History

2020-07-31 15:06:51 +08:00
From ef3f0c73fd940accf732f94cace4d53fc1604142 Mon Sep 17 00:00:00 2001
From: chengquan <chengquan3@huawei.com>
Date: Thu, 8 Aug 2019 16:14:06 +0800
Subject: [PATCH] sort requirements
reason: sort requirements in setup
Signed-off-by: chengquan <chengquan3@huawei.com>
---
setup.py | 1 +
2020-07-31 15:06:51 +08:00
1 file changed, 1 insertion(+)
diff --git a/setup.py b/setup.py
2023-07-12 15:58:59 +08:00
index d0b1c99..55b929a 100644
--- a/setup.py
+++ b/setup.py
2023-07-12 15:58:59 +08:00
@@ -331,6 +331,7 @@ cmdclass = {
2020-07-31 15:06:51 +08:00
}
2023-07-12 15:58:59 +08:00
2020-07-31 15:06:51 +08:00
requirements = read_requires()
+requirements.sort()
2023-07-12 15:58:59 +08:00
2020-07-31 15:06:51 +08:00
setuptools.setup(
name="cloud-init",
2023-07-12 15:58:59 +08:00
--
2.27.0