From a6f8ff5cfc7ce6edb5e5f32995fabcc166eaf6c1 Mon Sep 17 00:00:00 2001 From: Nikoleta Glynatsi Date: Tue, 19 Sep 2017 10:29:09 +0100 Subject: [PATCH] fix requirements versions This addresse issue #35. Gentoo Linux did not support the all the packages version's are they where. Arcas won't be failing with an updated version or an older one. The functions used by Arcas have remained the same. --- requirements.txt | 12 ++++++------ setup.py | 8 +++++--- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index 97b1333..071e0e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -requests -requests_mock -ratelimit -docopt -hypothesis -pytz +requests>=2.12.1, +requests_mock>=1.2.0, +ratelimit==1.4.1, +docopt, +hypothesis, +pytz, pandas diff --git a/setup.py b/setup.py index 66e8886..3c0af77 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,14 @@ # Read in the version number exec(open('src/arcas/version.py', 'r').read()) -requirements = ["requests>=2.12.5", +requirements = ["requests>=2.12.1", "requests_mock>=1.2.0", "ratelimit==1.4.1", "docopt", - "hypothesis", - "pytz"] + "hypothesis", + "pytz", + "pandas"] + def test_suite(): """Discover all tests in the tests dir"""