Skip to content

Commit

Permalink
Stackless issue python#259: Update Doc/conf.py and .readthedocs.yml
Browse files Browse the repository at this point in the history
Well, the previous commit didn't build on readthedocs.org.
- Rename .readthedocs.yml to .readthedocs.yaml
  See https://docs.readthedocs.io/en/stable/config-file/index.html
- Add a requirements file Doc/slp_readthedocs_requirements.txt and
  require the same packages as specified in Makefile. Already set the
  Sphinx version to 2.0.1, because upstream commit 7d23dbe
  • Loading branch information
Anselm Kruis committed Aug 8, 2021
1 parent b87f882 commit a15ae9c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .readthedocs.yml → .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ build:
# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
install:
- requirements: Doc/slp_readthedocs_requirements.txt
system_packages: true
10 changes: 10 additions & 0 deletions Doc/slp_readthedocs_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
#
# This file is used to create the virtual environment used to build the Stackless
# documentation on readthedocs.org. See ../.readthedocs.yaml
#
# The requirements should match the requirements in the target "venv" of Makefile
#
Sphinx == 2.0.1
blurb
python-docs-theme

0 comments on commit a15ae9c

Please sign in to comment.