diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2017-10-27 09:07:29 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-10-27 13:50:34 +0200 |
commit | 597fc547ce2c5f72901bcc1ea7b01717d0b60fbe (patch) | |
tree | 4b2337bfe89ca4f227e8ed684a681a0241ce95c0 /package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch | |
parent | 087fb9bbb1a21ad7a218f63b768272dcbc350625 (diff) | |
download | buildroot-597fc547ce2c5f72901bcc1ea7b01717d0b60fbe.tar.gz buildroot-597fc547ce2c5f72901bcc1ea7b01717d0b60fbe.zip |
python-paho-mqtt: bump version to 1.3.1
Remove upstreamed patch and add licence checksums.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch')
-rw-r--r-- | package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch b/package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch deleted file mode 100644 index b2fbe246cb..0000000000 --- a/package/python-paho-mqtt/0001-Make-pytest-runner-a-conditional-requirement.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 38373d36094b5a708c595f8c560d14e8ab61aac6 Mon Sep 17 00:00:00 2001 -From: Yegor Yefremov <yegorslists@googlemail.com> -Date: Fri, 8 Sep 2017 08:58:31 +0200 -Subject: [PATCH] Make pytest-runner a conditional requirement - -Check for pytest-runner only if setup.py was invoked with 'test' -argument. - -Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> ---- - setup.py | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index 85d9c5f..10fb6df 100644 ---- a/setup.py -+++ b/setup.py -@@ -12,7 +12,8 @@ with open('README.rst', 'rb') as readme_file: - - requirements = [] - test_requirements = ['pytest', 'pylama'] --setup_requirements = ['pytest-runner'] -+needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv) -+setup_requirements = ['pytest-runner'] if needs_pytest else [] - - if sys.version_info < (3, 0): - test_requirements += ['mock'] --- -2.11.0 - |