You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_ installed you should be able to do **easy_install pymongo** to install PyMongo. Otherwise you can download the project source and do **python setup.py install** to install.
18
+
19
+
If you have `setuptools
20
+
<http://peak.telecommunity.com/DevCenter/setuptools>`_ installed you
21
+
should be able to do **easy_install pymongo** to install
22
+
PyMongo. Otherwise you can download the project source and do **python
23
+
setup.py install** to install.
17
24
18
25
Dependencies
19
26
============
20
-
The PyMongo distribution has been tested on Python 2.x, where x >= 3. On Python 2.3 the optional
21
-
C extension will not be built. This will negatively affect performance, but everything should still work.
27
+
28
+
The PyMongo distribution is supported and tested on Python 2.x, where
29
+
x >= 4. PyMongo versions <= 1.3 also supported Python 2.3, but that is
30
+
no longer supported. If you need to use Python 2.3 please contact us.
22
31
23
32
Additional dependencies are:
24
33
@@ -63,10 +72,18 @@ u'x_1'
63
72
64
73
Documentation
65
74
=============
66
-
You will need sphinx_ installed to generate the documentation. Documentation can be generated by running **python setup.py doc**. Generated documentation can be found in the *doc/build/html/* directory.
75
+
76
+
You will need sphinx_ installed to generate the
77
+
documentation. Documentation can be generated by running **python
78
+
setup.py doc**. Generated documentation can be found in the
79
+
*doc/build/html/* directory.
67
80
68
81
Testing
69
82
=======
70
-
The easiest way to run the tests is to install `nose <http://somethingaboutorange.com/mrl/projects/nose/>`_ (**easy_install nose**) and run **nosetests** or **python setup.py test** in the root of the distribution. Tests are located in the *test/* directory.
83
+
84
+
The easiest way to run the tests is to install `nose
0 commit comments