8000
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 86bb549 commit 7b3e5d0Copy full SHA for 7b3e5d0
.gitignore
@@ -13,3 +13,4 @@ venv/
13
.pospell/
14
.potodo/
15
.venv/
16
+_readthedocs/html/
.readthedocs.yaml
@@ -0,0 +1,17 @@
1
+version: 2
2
+build:
3
+ os: "ubuntu-22.04"
4
+ tools:
5
+ python: "3"
6
+
7
+ apt_packages:
8
+ - make
9
+ - gettext
10
11
+ commands:
12
+ - git clone https://github.com/python/cpython.git venv/cpython/
+ - python -m pip install --upgrade pip setuptools wheel
+ - python -m pip install --upgrade -r requirements.txt -r venv/cpython/Doc/requirements.txt
+ - mkdir -p _readthedocs/html/
17
+ - cp -r venv/cpython/Doc/build/html/* _readthedocs/html/
0 commit comments