blob: 1abd531c627210b58a97e7fc41c20a415906394e [file] [log] [blame]
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001From ead04f2da75efeca3369feff6161ea4a8baecbc9 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 Geisslerd1e89492021-02-12 15:35:20 -06004Subject: [PATCH] setup.py: remove the setup_requires for setuptools-scm
Andrew Geissler6ce62a22020-11-30 19:58:47 -06005
6The setup_requires argument forces the download of the egg file for setuptools-scm
7during the do_compile phase. This download is incompatible with the typical fetch
8and mirror structure. The only usage of scm is the generation of the _version.py
9file and in the release tarball it is already correctly created
10
11Upstream-Status: Inappropriate [oe specific]
12
13Signed-off-by: Derek Straka <derek@asterius.io>
14
15Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
16
17Rebase for pytest 6.1.0.
18
19Signed-off-by: Kai Kang <kai.kang@windriver.com>
Andrew Geisslerd1e89492021-02-12 15:35:20 -060020
Andrew Geissler6ce62a22020-11-30 19:58:47 -060021---
22 setup.cfg | 1 -
23 1 file changed, 1 deletion(-)
24
25diff --git a/setup.cfg b/setup.cfg
Andrew Geisslerd1e89492021-02-12 15:35:20 -060026index 6ed0792..0137090 100644
Andrew Geissler6ce62a22020-11-30 19:58:47 -060027--- a/setup.cfg
28+++ b/setup.cfg
Andrew Geisslerd1e89492021-02-12 15:35:20 -060029@@ -53,7 +53,6 @@ package_dir =
Andrew Geissler6ce62a22020-11-30 19:58:47 -060030 =src
31 setup_requires =
Andrew Geisslerd1e89492021-02-12 15:35:20 -060032 setuptools>=>=42.0
33- setuptools-scm>=3.4
Andrew Geissler6ce62a22020-11-30 19:58:47 -060034 zip_safe = no
35
36 [options.entry_points]