Skip to content

Commit

Permalink
fix requirements versions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Nikoleta-v3 committed Sep 19, 2017
1 parent 6d7b702 commit a6f8ff5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down

0 comments on commit a6f8ff5

Please sign in to comment.