Description: Fixes explicit install_requirements
This applies the patch outlined in https://github.com/juju/theblues/pull/20
.
theblues (0.1.1-1ubuntu6) xenial; urgency=medium
.
* PATCH better python dependency management
Author: Marco Ceppi <marco@ceppi.net>
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- theblues-0.1.1.orig/setup.py
+++ theblues-0.1.1/setup.py
@@ -30,7 +30,8 @@ setup(
package_dir={'theblues': 'theblues'},
include_package_data=True,
install_requires=[
- 'requests==2.6.0',
+ 'requests>=2.1.1,<=2.9.1',
+ 'jujubundlelib==0.4.1',
],
tests_requires=[
'httmock==1.2.3',
--- theblues-0.1.1.orig/theblues.egg-info/requires.txt
+++ theblues-0.1.1/theblues.egg-info/requires.txt
@@ -1 +1,2 @@
-requests==2.6.0
\ No newline at end of file
+jujubundlelib==0.4.1
+requests>=2.2.1,<=2.9.1