cloud-init/bugfix-sort-requirements.patch

26 lines
558 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
index a9132d2..a81c1e9 100755
--- a/setup.py
+++ b/setup.py
@@ -324,6 +324,7 @@ cmdclass = {
2020-07-31 15:06:51 +08:00
}
2020-07-31 15:06:51 +08:00
requirements = read_requires()
+requirements.sort()
2020-07-31 15:06:51 +08:00
setuptools.setup(
name="cloud-init",
--
2.27.0