Skip to content

Commit 537b033

Browse files
committed
BUMP 3.7.0b0
1 parent d8abb4b commit 537b033

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
@@ -246,8 +246,8 @@ but can be found on the
246246
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
247247
They can be installed by passing the full URL for the tag to pip::
248248

249-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0.tar.gz
249+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz
250250

251251
or easy_install::
252252

253-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0.tar.gz
253+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.7.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, 7, 0, '.dev0')
67+
version_tuple = (3, 7, 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
@@ -34,7 +34,7 @@
3434
except ImportError:
3535
_HAVE_SPHINX = False
3636

37-
version = "3.7.0.dev0"
37+
version = "3.7.0b0"
3838

3939
f = open("README.rst")
4040
try:

0 commit comments

Comments
 (0)