We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6720796 commit c949855Copy full SHA for c949855
.gitignore
@@ -10,6 +10,7 @@
10
# $ git config --global core.excludesfile ~/.gitignore_global
11
12
.sass-cache/
13
+docs/build
14
media/*
15
static-root/
16
static/stylesheets/mq.css
.readthedocs.yaml
@@ -0,0 +1,15 @@
1
+# Read the Docs configuration file
2
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+# Project page: https://readthedocs.org/projects/pythondotorg/
4
+
5
+version: 2
6
7
+build:
8
+ os: ubuntu-22.04
9
+ tools:
+ python: "3"
+ commands:
+ - python -m pip install -r docs-requirements.txt
+ - make -C docs html JOBS=$(nproc) BUILDDIR=_readthedocs
+ - mv docs/_readthedocs _readthedocs
0 commit comments