File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ PyMongo source directory::
211211 $ python setup.py bdist_egg
212212
213213The 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
215215depending 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.
224224Copy this file to the target system and issue the following command to install the
225225package::
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
229229Installing 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 >`_.
236236They 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
240240or 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
Original file line number Diff line number Diff line change 7070ALL = 2
7171"""Profile all operations."""
7272
73- version_tuple = (3 , 4 , 0 , ".dev0 " )
73+ version_tuple = (3 , 4 , "rc0 " )
7474
7575def get_version_string ():
7676 if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 2626from distutils .errors import DistutilsPlatformError , DistutilsExecError
2727from distutils .core import Extension
2828
29- version = "3.4.0.dev0 "
29+ version = "3.4rc0 "
3030
3131f = open ("README.rst" )
3232try :
You can’t perform that action at this time.
0 commit comments