1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Felipe Sateler <fsateler@debian.org>
Date: Wed, 14 Dec 2016 12:32:24 -0300
Subject: Relax test dependencies
Otherwise setup.py will try to download them
---
test-requirements.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test-requirements.txt b/test-requirements.txt
index 9dc5b8b..fc72390 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,3 +1,3 @@
-pytest==3.0.2
-flake8==2.4.1
-pytest-cov==2.3.1
\ No newline at end of file
+pytest>=3.0.2
+flake8>=2.4.1
+pytest-cov>=2.3.1
|