Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6720796 commit c949855Copy full SHA for c949855
2 files changed
.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