Ubuntu Pastebin

Paste from Marco Ceppi at Wed, 23 Mar 2016 07:20:26 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
Download as text