diff --git a/setup.py b/setup.py index e616260..b7fb91f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup( name='mongoprof', - version='0.2.0', + version='0.3.0', author='James Turk', author_email='james.p.turk@gmail.com', url='http://github.com/jamesturk/mongoprof', @@ -10,5 +10,5 @@ setup( license='BSD', description='command line tool for watching mongodb queries', long_description=open('README.md').read(), - install_requires=['pymongo', 'termcolor'], + install_requires=['pymongo<3', 'termcolor'], )