blob: 8c5c17247e6c0a080bbace6fa842f3eb62f6d726 [file] [log] [blame]
Brad Bishop0f291cc2019-09-01 15:16:57 -04001From ff784f4803ab33f5e3389e40d038d52d1e211843 Mon Sep 17 00:00:00 2001
2From: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
3Date: Wed, 28 Aug 2019 16:12:27 +0900
4Subject: [PATCH] [PATCH] setup.py: remove the setup_requires for
Brad Bishop316dfdd2018-06-25 12:45:53 -04005 setuptools-scm
Brad Bishopd7bf8c12018-02-25 22:55:05 -05006
7The setup_requires argument forces the download of the egg file for setuptools-scm
8during the do_compile phase. This download is incompatible with the typical fetch
9and mirror structure. The only usage of scm is the generation of the _version.py
10file and in the release tarball it is already correctly created
11
Brad Bishop316dfdd2018-06-25 12:45:53 -040012Upstream-Status: Inappropriate [oe specific]
13
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014Signed-off-by: Derek Straka <derek@asterius.io>
Brad Bishop0f291cc2019-09-01 15:16:57 -040015
16Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017
Andrew Geisslera2681d92020-10-16 10:17:07 -050018Rebase for pytest 6.1.0.
19
20Signed-off-by: Kai Kang <kai.kang@windriver.com>
21---
22 setup.cfg | 1 -
23 1 file changed, 1 deletion(-)
24
25diff --git a/setup.cfg b/setup.cfg
26index 60f6564..c4d1471 100644
27--- a/setup.cfg
28+++ b/setup.cfg
29@@ -55,7 +55,6 @@ package_dir =
30 =src
31 setup_requires =
32 setuptools>=40.0
33- setuptools-scm
34 zip_safe = no
35
36 [options.entry_points]
Brad Bishopd7bf8c12018-02-25 22:55:05 -050037--
Brad Bishop0f291cc2019-09-01 15:16:57 -0400382.17.1
39