Skip to content

Commit

Permalink
dummy
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikoleta-v3 committed Sep 19, 2017
1 parent 1e3ec00 commit 6d7b702
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
requests==2.12.1
requests_mock==1.1.0
ratelimit==1.1.0
requests
requests_mock
ratelimit
docopt
hypothesis
pytz
Expand Down
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
from setuptools import setup, find_packages

import unittest
import doctest

# Read in the version number
exec(open('src/arcas/version.py', 'r').read())

requirements = ["requests==2.12.1",
"requests_mock==1.1.0",
"ratelimit==1.1.0",
"docopt"]
requirements = ["requests>=2.12.5",
"requests_mock>=1.2.0",
"ratelimit==1.4.1",
"docopt",
"hypothesis",
"pytz"]

def test_suite():
"""Discover all tests in the tests dir"""
Expand Down

0 comments on commit 6d7b702

Please sign in to comment.