Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ venv/
.pospell/
.potodo/
.venv/
_readthedocs/html/
17 changes: 17 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3"

apt_packages:
- make
- gettext

commands:
- 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
- make
- mkdir -p _readthedocs/html/
- cp -r venv/cpython/Doc/build/html/* _readthedocs/html/