blob: 06dfcdfc60acb98c644006cf790b4b76d3034478 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 24a901fd17926e8e05be4ed2e01b0113a2e3a852 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Derek Straka <derek@asterius.io>
Brad Bishop316dfdd2018-06-25 12:45:53 -04003Date: Tue, 19 Dec 2017 11:36:39 -0500
4Subject: [PATCH] [PATCH 1/1] setup.py: remove the setup_requires for
5 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>
15---
16 setup.py | 1 -
17 1 file changed, 1 deletion(-)
18
19diff --git a/setup.py b/setup.py
Brad Bishop316dfdd2018-06-25 12:45:53 -040020index 3eb38ef..1163202 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021--- a/setup.py
22+++ b/setup.py
Brad Bishop316dfdd2018-06-25 12:45:53 -040023@@ -82,7 +82,6 @@ def main():
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024 keywords="test unittest",
25 cmdclass={'test': PyTest},
26 # the following should be enabled for release
27- setup_requires=['setuptools-scm'],
Brad Bishop316dfdd2018-06-25 12:45:53 -040028 python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029 install_requires=install_requires,
30 extras_require=extras_require,
Brad Bishopd7bf8c12018-02-25 22:55:05 -050031--
322.7.4