Skip to content

Commit 97af797

Browse files
committed
BUMP 3.9.0b0
1 parent ee1541c commit 97af797

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ but can be found on the
250250
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
251251
They can be installed by passing the full URL for the tag to pip::
252252

253-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz
253+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz
254254

255255
or easy_install::
256256

257-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz
257+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
ALL = 2
6565
"""Profile all operations."""
6666

67-
version_tuple = (3, 8, 0, '.dev0')
67+
version_tuple = (3, 9, 0, 'b0')
6868

6969
def get_version_string():
7070
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.8.0.dev0"
42+
version = "3.9.0b0"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)