update OBS-URL: https://build.opensuse.org/request/show/333732 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urllib3?expand=0&rev=7
38 lines
933 B
Diff
38 lines
933 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/dev-requirements.txt b/dev-requirements.txt
|
|
index 02d70f4..98de1cc 100644
|
|
--- a/dev-requirements.txt
|
|
+++ b/dev-requirements.txt
|
|
@@ -1,8 +1,8 @@
|
|
-nose==1.3.7
|
|
-nose-exclude==0.4.1
|
|
-mock==1.3.0
|
|
-coverage==3.7.1
|
|
-tox==2.1.1
|
|
-twine==1.5.0
|
|
-wheel==0.24.0
|
|
-tornado==4.2.1
|
|
+nose>=1.3.7
|
|
+nose-exclude>=0.4.1
|
|
+mock>=1.3.0
|
|
+coverage>=3.7.1
|
|
+tox>=2.1.1
|
|
+twine>=1.5.0
|
|
+wheel>=0.24.0
|
|
+tornado>=4.2.1
|
|
--
|
|
1.9.0
|
|
|