File tree Expand file tree Collapse file tree 8 files changed +14
-23
lines changed Expand file tree Collapse file tree 8 files changed +14
-23
lines changed Original file line number Diff line number Diff line change 2424 args : [--line-length=100]
2525
2626- repo : https://github.com/PyCQA/isort
27- rev : 5.10.1
27+ rev : 5.12.0
2828 hooks :
2929 - id : isort
3030 files : \.py$
Original file line number Diff line number Diff line change @@ -3519,9 +3519,3 @@ Changes in Version 0.9.7
35193519 :class: `~pymongo.collection.Collection ` names
35203520- add version as :attr: `pymongo.version `
35213521- add ``--no_ext `` command line option to *setup.py *
3522-
3523- .. toctree ::
3524- :hidden:
3525-
3526- python3
3527- examples/gevent
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ Frequently Encountered Issues
33
44Also see the :ref: `TLSErrors ` section.
55
6- .. contents ::
7-
86Server reports wire version X, PyMongo requires Y
97-------------------------------------------------
108
Original file line number Diff line number Diff line change 3232except ImportError :
3333 pass
3434
35-
3635# Add any paths that contain templates here, relative to this directory.
3736templates_path = ["_templates" ]
3837
108107
109108# -- Options for HTML output ---------------------------------------------------
110109
111- # Theme gratefully vendored from CPython source.
112- html_theme = "pydoctheme"
113- html_theme_path = ["." ]
114- html_theme_options = {"collapsiblesidebar" : True , "googletag" : False }
110+ try :
111+ import furo # noqa
112+
113+ html_theme = "furo"
114+ except ImportError :
115+ # Theme gratefully vendored from CPython source.
116+ html_theme = "pydoctheme"
117+ html_theme_path = ["." ]
118+ html_theme_options = {"collapsiblesidebar" : True , "googletag" : False }
115119
116- # Additional static files.
117- html_static_path = ["static" ]
120+ # Additional static files.
121+ html_static_path = ["static" ]
118122
119123# The name for this set of Sphinx documents. If None, it defaults to
120124# "<project> v<release> documentation".
Original file line number Diff line number Diff line change 1- Sphinx~=4.2
1+ Sphinx~=6.1
22sphinx_rtd_theme~=0.5
33readthedocs-sphinx-search~=0.1
44sphinxcontrib-shellcheck~=1.1
5+ furo==2022.12.7
Original file line number Diff line number Diff line change 11Frequently Asked Questions
22==========================
33
4- .. contents ::
5-
64Is PyMongo thread-safe?
75-----------------------
86
Original file line number Diff line number Diff line change 33PyMongo 4 Migration Guide
44=========================
55
6- .. contents ::
7-
86.. testsetup ::
97
108 from pymongo import MongoClient, ReadPreference
Original file line number Diff line number Diff line change 11Python 3 FAQ
22============
33
4- .. contents ::
5-
64What Python 3 versions are supported?
75-------------------------------------
86
You can’t perform that action at this time.
0 commit comments