Skip to content

Commit

Permalink
fixing version pinning information
Browse files Browse the repository at this point in the history
  • Loading branch information
lockefox committed Jan 28, 2017
1 parent 89ac2ef commit 92057e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92057e5

Please sign in to comment.