BUMP 2.8rc2

This commit is contained in:
Bernie Hackett 2014-12-24 11:38:35 -08:00
parent 83f53499ae
commit 0b715cff2e
3 changed files with 4 additions and 4 deletions

View File

@ -216,9 +216,9 @@ but can be found on the
`github tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
They can be installed by passing the full URL for the tag to pip::
$ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz
$ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz
or easy_install::
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz

View File

@ -77,7 +77,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (2, 8, 'rc1+')
version_tuple = (2, 8, 'rc2')
def get_version_string():
if isinstance(version_tuple[-1], basestring):

View File

@ -33,7 +33,7 @@ from distutils.errors import CCompilerError
from distutils.errors import DistutilsPlatformError, DistutilsExecError
from distutils.core import Extension
version = "2.8rc1+"
version = "2.8rc2"
f = open("README.rst")
try: