blob: 8c5c17247e6c0a080bbace6fa842f3eb62f6d726 [file] [log] [blame]
Andrew Geissler706d5aa2021-02-12 15:55:30 -06001From ff784f4803ab33f5e3389e40d038d52d1e211843 Mon Sep 17 00:00:00 2001
Andrew Geissler6ce62a22020-11-30 19:58:47 -06002From: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
3Date: Wed, 28 Aug 2019 16:12:27 +0900
Andrew Geissler706d5aa2021-02-12 15:55:30 -06004Subject: [PATCH] [PATCH] setup.py: remove the setup_requires for
5 setuptools-scm
Andrew Geissler6ce62a22020-11-30 19:58:47 -06006
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
12Upstream-Status: Inappropriate [oe specific]
13
14Signed-off-by: Derek Straka <derek@asterius.io>
15
16Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
17
18Rebase 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
Andrew Geissler706d5aa2021-02-12 15:55:30 -060026index 60f6564..c4d1471 100644
Andrew Geissler6ce62a22020-11-30 19:58:47 -060027--- a/setup.cfg
28+++ b/setup.cfg
Andrew Geissler706d5aa2021-02-12 15:55:30 -060029@@ -55,7 +55,6 @@ package_dir =
Andrew Geissler6ce62a22020-11-30 19:58:47 -060030 =src
31 setup_requires =
Andrew Geissler706d5aa2021-02-12 15:55:30 -060032 setuptools>=40.0
33- setuptools-scm
Andrew Geissler6ce62a22020-11-30 19:58:47 -060034 zip_safe = no
35
36 [options.entry_points]
Andrew Geissler706d5aa2021-02-12 15:55:30 -060037--
382.17.1
39