Skip to content

Commit efefba8

Browse files
committed
PYTHON-4696 Add ReadTheDocs Config
1 parent a904789 commit efefba8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.readthedocs.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build documentation in the doc/ directory with Sphinx
9+
sphinx:
10+
configuration: doc/source/conf.py
11+
fail_on_warning: true
12+
13+
# Set the version of Python and requirements required to build the docs.
14+
python:
15+
install:
16+
# Install pymongo itself.
17+
- method: pip
18+
path: .
19+
extra_requirements:
20+
- docs
21+
22+
build:
23+
os: ubuntu-22.04
24+
tools:
25+
python: "3.11"

0 commit comments

Comments
 (0)