Skip to content

Commit

Permalink
fixed setup.py. and update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tell-k committed Jul 11, 2015
1 parent 844936e commit 535db5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion goolabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from __future__ import division, print_function, absolute_import, unicode_literals # NOQA
from goolabs.client import GoolabsAPI # NOQA

__version__ = '0.1.3'
__version__ = '0.2.0'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def run_tests(self):
"testfixtures",
"responses",
]
if sys.version_info <= (2, 6):

if sys.version_info < (2, 7):
tests_require.append("mock==1.0.1")
else:
tests_require.append("mock")
Expand Down

0 comments on commit 535db5d

Please sign in to comment.