File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4- Changes in Next Version
5- -----------------------
4+ Changes in Version 3.6.0
5+ ------------------------
66
77This version drops support for MongoDB versions older than 2.6. If connecting to
88a MongoDB 2.4 server or older, PyMongo now throws a
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ PyMongo source directory::
216216 $ python setup.py bdist_egg
217217
218218The egg package can be found in the dist/ subdirectory. The file name will
219- resemble “pymongo-3.4 -py2.7-linux-x86_64.egg” but may have a different name
219+ resemble “pymongo-3.6 -py2.7-linux-x86_64.egg” but may have a different name
220220depending on your platform and the version of python you use to compile.
221221
222222.. warning ::
@@ -229,7 +229,7 @@ depending on your platform and the version of python you use to compile.
229229Copy this file to the target system and issue the following command to install the
230230package::
231231
232- $ sudo python -m easy_install pymongo-3.4 -py2.7-linux-x86_64.egg
232+ $ sudo python -m easy_install pymongo-3.6 -py2.7-linux-x86_64.egg
233233
234234Installing a beta or release candidate
235235--------------------------------------
@@ -240,8 +240,8 @@ but can be found on the
240240`github tags page <https://github.com/mongodb/mongo-python-driver/tags >`_.
241241They can be installed by passing the full URL for the tag to pip::
242242
243- $ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0 .tar.gz
243+ $ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0 .tar.gz
244244
245245or easy_install::
246246
247- $ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0 .tar.gz
247+ $ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0 .tar.gz
Original file line number Diff line number Diff line change 6464ALL = 2
6565"""Profile all operations."""
6666
67- version_tuple = (3 , 6 , 0 , '.dev0 ' )
67+ version_tuple = (3 , 6 , 'rc0 ' )
6868
6969def get_version_string ():
7070 if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 3131except ImportError :
3232 _HAVE_SPHINX = False
3333
34- version = "3.6.0.dev0 "
34+ version = "3.6rc0 "
3535
3636f = open ("README.rst" )
3737try :
You can’t perform that action at this time.
0 commit comments