BUMP 3.9.0b0

This commit is contained in:
Shane Harvey 2019-03-07 15:26:01 -08:00
parent ee1541c5b8
commit 97af797898
3 changed files with 4 additions and 4 deletions

View File

@ -250,8 +250,8 @@ 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::
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz
or easy_install::
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz

View File

@ -64,7 +64,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (3, 8, 0, '.dev0')
version_tuple = (3, 9, 0, 'b0')
def get_version_string():
if isinstance(version_tuple[-1], str):

View File

@ -39,7 +39,7 @@ except ImportError:
except ImportError:
_HAVE_SPHINX = False
version = "3.8.0.dev0"
version = "3.9.0b0"
f = open("README.rst")
try: