30 lines
805 B
Diff
30 lines
805 B
Diff
|
From c8ce46178f97cc765a569864302b75aaa730d590 Mon Sep 17 00:00:00 2001
|
||
|
From: Sascha Peilicke <saschpe@mailbox.org>
|
||
|
Date: Thu, 20 Mar 2014 15:35:51 +0100
|
||
|
Subject: [PATCH] Don't pin dependency to exact version
|
||
|
|
||
|
While this expresses with which versions urllib3 is tested to work with,
|
||
|
almost all distros ship different package versions. To accomodate that
|
||
|
(and to avoid having them to patch away these hard requirements) only
|
||
|
use '>='.
|
||
|
---
|
||
|
test-requirements.txt | 8 ++++----
|
||
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/test-requirements.txt b/test-requirements.txt
|
||
|
index 02d70f4..98de1cc 100644
|
||
|
--- a/test-requirements.txt
|
||
|
+++ b/test-requirements.txt
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-nose==1.3
|
||
|
-mock==1.0.1
|
||
|
-tornado==3.1.1
|
||
|
-coverage==3.6
|
||
|
+nose>=1.3
|
||
|
+mock>=1.0.1
|
||
|
+tornado>=3.1.1
|
||
|
+coverage>=3.6
|
||
|
--
|
||
|
1.9.0
|
||
|
|