Skip to content

Commit

Permalink
if machine use py26. this package install mock(v1.0.1).
Browse files Browse the repository at this point in the history
  • Loading branch information
tell-k committed Jul 11, 2015
1 parent 7c1826b commit 844936e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@ def run_tests(self):
tests_require = [
"pytest-cov",
"pytest",
"mock",
"testfixtures",
"responses",
]
if sys.version_info <= (2, 6):
tests_require.append("mock==1.0.1")
else:
tests_require.append("mock")

entry_points = {
"console_scripts": [
Expand Down

0 comments on commit 844936e

Please sign in to comment.