Skip to content

Commit 17e3683

Browse files
committed
BUMP 3.4rc0
1 parent b37e828 commit 17e3683

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
@@ -211,7 +211,7 @@ PyMongo source directory::
211211
$ python setup.py bdist_egg
212212

213213
The egg package can be found in the dist/ subdirectory. The file name will
214-
resemble “pymongo-3.1-py2.7-linux-x86_64.egg” but may have a different name
214+
resemble “pymongo-3.4-py2.7-linux-x86_64.egg” but may have a different name
215215
depending on your platform and the version of python you use to compile.
216216

217217
.. warning::
@@ -224,7 +224,7 @@ depending on your platform and the version of python you use to compile.
224224
Copy this file to the target system and issue the following command to install the
225225
package::
226226

227-
$ sudo python -m easy_install pymongo-3.1-py2.7-linux-x86_64.egg
227+
$ sudo python -m easy_install pymongo-3.4-py2.7-linux-x86_64.egg
228228

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

238-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.2rc0.tar.gz
238+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0.tar.gz
239239

240240
or easy_install::
241241

242-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.2rc0.tar.gz
242+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0.tar.gz
243243

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, 4, 0, ".dev0")
73+
version_tuple = (3, 4, "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.4.0.dev0"
29+
version = "3.4rc0"
3030

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

0 commit comments

Comments
 (0)