cloud-init/bugfix-sort-requirements.patch
2020-11-04 15:41:39 +08:00

24 lines
595 B
Diff

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>
---
cloud-init-20.3/setup.py | 1 +
1 file changed, 1 insertion(+)
diff -Nur a/setup.py b/setup.py
--- a/setup.py 2019-04-11 20:27:41.526622810 +0800
+++ b/setup.py 2019-04-11 20:28:21.734622815 +0800
@@ -289,6 +289,7 @@
}
requirements = read_requires()
+requirements.sort()
setuptools.setup(
name='cloud-init',