bump to 0.3 w/ pymongo < 3

This commit is contained in:
James Turk 2016-11-30 01:27:30 -05:00 committed by GitHub
parent fd61698b70
commit 2838a30d04

View File

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