diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2020-09-18 14:58:35 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-09-21 08:57:41 -0700 |
commit | d7c8d85f959a693690bbf4d99102e8a68e78df13 (patch) | |
tree | 0daf6f64637333d51010ab94ac11e8d5732ca166 /meta-python/recipes-devtools/python/python-rfc3339-validator | |
parent | ea5d1e229898ba719818ccbab8e19010577f9ecc (diff) | |
download | meta-openembedded-d7c8d85f959a693690bbf4d99102e8a68e78df13.tar.gz |
python3-rfc3339-validator: Upgrade 0.1.1 -> 0.1.2
Upgrade to release 0.1.2:
- setup.py: move pytest-runner to test_requirements
Patch has been removed from the recipe because it has been already
upstreamed in the new release.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-rfc3339-validator')
-rw-r--r-- | meta-python/recipes-devtools/python/python-rfc3339-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-python/recipes-devtools/python/python-rfc3339-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch b/meta-python/recipes-devtools/python/python-rfc3339-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch deleted file mode 100644 index ce8ca0bc8c..0000000000 --- a/meta-python/recipes-devtools/python/python-rfc3339-validator/0001-setup.py-move-pytest-runner-to-test_requirements.patch +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | From 2de281fdca88f223ace1eb6428a77b9903c69264 Mon Sep 17 00:00:00 2001 | ||
2 | From: Nicola Lunghi <nicola.lunghi@jci.com> | ||
3 | Date: Thu, 14 Nov 2019 11:58:28 +0000 | ||
4 | Subject: [PATCH] setup.py: move pytest-runner to test_requirements | ||
5 | |||
6 | This fixes an issue with yocto build. | ||
7 | pytest-runner is only needed when running tests. | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | --- | ||
11 | setup.py | 4 ++-- | ||
12 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
13 | |||
14 | diff --git a/setup.py b/setup.py | ||
15 | index 9a50767..e3b1c6e 100644 | ||
16 | --- a/setup.py | ||
17 | +++ b/setup.py | ||
18 | @@ -12,9 +12,9 @@ requirements = [ | ||
19 | 'six', | ||
20 | ] | ||
21 | |||
22 | -setup_requirements = ['pytest-runner', ] | ||
23 | +setup_requirements = [] | ||
24 | |||
25 | -test_requirements = ['pytest>=3', ] | ||
26 | +test_requirements = ['pytest>=3', 'pytest-runner'] | ||
27 | |||
28 | setup( | ||
29 | author="Nicolas Aimetti", | ||
30 | -- | ||
31 | 2.20.1 | ||
32 | |||