Skip to content

Commit 06f200e

Browse files
committed
BUMP 3.1rc0
1 parent c7c2567 commit 06f200e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ to install pymongo on platforms other than Windows::
5252

5353
To get a specific version of pymongo::
5454

55-
$ pip install pymongo==2.8
55+
$ pip install pymongo==3.0.3
5656

5757
To upgrade using pip::
5858

@@ -222,7 +222,7 @@ depending on your platform and the version of python you use to compile.
222222
Copy this file to the target system and issue the following command to install the
223223
package::
224224

225-
$ sudo easy_install pymongo-3.0-py2.7-linux-x86_64.egg
225+
$ sudo easy_install pymongo-3.0.3-py2.7-linux-x86_64.egg
226226

227227
Installing a beta or release candidate
228228
--------------------------------------
@@ -233,9 +233,9 @@ but can be found on the
233233
`github tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
234234
They can be installed by passing the full URL for the tag to pip::
235235

236-
$ pip install https://github.com/mongodb/mongo-python-driver/archive/3.0rc1.tar.gz
236+
$ pip install https://github.com/mongodb/mongo-python-driver/archive/3.1rc0.tar.gz
237237

238238
or easy_install::
239239

240-
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/3.0rc1.tar.gz
240+
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/3.1rc0.tar.gz
241241

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
ALL = 2
7171
"""Profile all operations."""
7272

73-
version_tuple = (3, 1, 0, '.dev0')
73+
version_tuple = (3, 1, 'rc0')
7474

7575
def get_version_string():
7676
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from distutils.errors import DistutilsPlatformError, DistutilsExecError
2727
from distutils.core import Extension
2828

29-
version = "3.1.0.dev0"
29+
version = "3.1rc0"
3030

3131
f = open("README.rst")
3232
try:

0 commit comments

Comments
 (0)