From 92057e5b75e88500ad977a03ed1ae92bf4243724 Mon Sep 17 00:00:00 2001 From: Lockefox Date: Sat, 28 Jan 2017 17:52:31 -0500 Subject: [PATCH] fixing version pinning information --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 3855d9b..97873e9 100644 --- a/setup.py +++ b/setup.py @@ -100,14 +100,14 @@ def run_tests(self): ] }, install_requires=[ - 'requests~=2.12.0', + 'requests>=2.12.0' #TODO: pandas/numpy/matplotlib requirements ], tests_require=[ - 'pytest~=3.0.0', - 'testfixtures~=4.12.0', - 'pytest_cov~=2.4.0', - 'mock~=2.0.0' + 'pytest>=3.0.0', + 'testfixtures>=4.12.0', + 'pytest_cov>=2.4.0', + 'mock>=2.0.0' ], cmdclass={ 'test':PyTest