Fix required PyMongo version

This commit is contained in:
Jorge Puente Sarrín 2013-05-18 01:46:01 -05:00
parent aa1831a07d
commit 207c3f1c96
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ Prerequisites
* Although Motor works with PyPy 2.0-beta1, limitations with greenlets and
PyPy's JIT compiler make PyPy applications that use Motor too slow for
regular use
* PyMongo_ 2.5 or later
* PyMongo_ 2.5.1 or later
* Tornado_
* Greenlet_

View File

@ -1,3 +1,3 @@
pymongo>=2.5
pymongo>=2.5.1
tornado>=3
greenlet>=0.4

View File

@ -62,7 +62,7 @@ setup(name='motor',
author_email='jesse@10gen.com',
url='https://github.com/mongodb/motor/',
install_requires=[
'pymongo >= 2.5',
'pymongo >= 2.5.1',
'tornado >= 3',
'greenlet >= 0.4.0',
],