diff options
Diffstat (limited to 'recipes-devtools/python/python3-newrelic/0001-setup.py-tweak-setuptools_scm-version-dependency.patch')
-rw-r--r-- | recipes-devtools/python/python3-newrelic/0001-setup.py-tweak-setuptools_scm-version-dependency.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/recipes-devtools/python/python3-newrelic/0001-setup.py-tweak-setuptools_scm-version-dependency.patch b/recipes-devtools/python/python3-newrelic/0001-setup.py-tweak-setuptools_scm-version-dependency.patch deleted file mode 100644 index 75fb6558..00000000 --- a/recipes-devtools/python/python3-newrelic/0001-setup.py-tweak-setuptools_scm-version-dependency.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From a61cea5053730f8180eb1fc8b4cb0f94ff4fc176 Mon Sep 17 00:00:00 2001 | ||
2 | From: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
3 | Date: Tue, 9 Feb 2021 21:31:19 -0500 | ||
4 | Subject: [PATCH] setup.py: tweak setuptools_scm version dependency | ||
5 | |||
6 | The version dependency of <4 isn't showing any issues in builds. | ||
7 | The oe-core version is 5+, and carrying a secondary version is | ||
8 | not trivial or something we want to do. | ||
9 | |||
10 | So we tweak the version to accept what we have in oe-core. | ||
11 | |||
12 | Upstream-Status: Inappropriate [embedded specific] | ||
13 | |||
14 | Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
15 | --- | ||
16 | setup.py | 2 +- | ||
17 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
18 | |||
19 | diff --git a/setup.py b/setup.py | ||
20 | index ade43a9..889a74f 100644 | ||
21 | --- a/setup.py | ||
22 | +++ b/setup.py | ||
23 | @@ -132,7 +132,7 @@ kwargs = dict( | ||
24 | "git_describe_command": "git describe --dirty --tags --long --match *.*.*.*", | ||
25 | "write_to": "newrelic/version.txt", | ||
26 | }, | ||
27 | - setup_requires=["setuptools_scm>=3.2,<4"], | ||
28 | + setup_requires=["setuptools_scm>=3.2"], | ||
29 | description = "New Relic Python Agent", | ||
30 | long_description = open(readme_file).read(), | ||
31 | url = "https://newrelic.com/docs/python/new-relic-for-python", | ||
32 | -- | ||
33 | 2.19.1 | ||
34 | |||