File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ PyMongo source directory::
209
209
$ python setup.py bdist_egg
210
210
211
211
The egg package can be found in the dist/ subdirectory. The file name will
212
- resemble “pymongo-3.0 -py2.7-linux-x86_64.egg” but may have a different name
212
+ resemble “pymongo-3.1 -py2.7-linux-x86_64.egg” but may have a different name
213
213
depending on your platform and the version of python you use to compile.
214
214
215
215
.. warning ::
@@ -222,7 +222,7 @@ depending on your platform and the version of python you use to compile.
222
222
Copy this file to the target system and issue the following command to install the
223
223
package::
224
224
225
- $ sudo easy_install pymongo-3.0.3 -py2.7-linux-x86_64.egg
225
+ $ sudo easy_install pymongo-3.1 -py2.7-linux-x86_64.egg
226
226
227
227
Installing a beta or release candidate
228
228
--------------------------------------
Original file line number Diff line number Diff line change 70
70
ALL = 2
71
71
"""Profile all operations."""
72
72
73
- version_tuple = (3 , 1 , 'rc0' )
73
+ version_tuple = (3 , 1 )
74
74
75
75
def get_version_string ():
76
76
if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 26
26
from distutils .errors import DistutilsPlatformError , DistutilsExecError
27
27
from distutils .core import Extension
28
28
29
- version = "3.1rc0 "
29
+ version = "3.1 "
30
30
31
31
f = open ("README.rst" )
32
32
try :
You can’t perform that action at this time.
0 commit comments