mirror of
https://github.com/opsschool/curriculum.git
synced 2026-01-15 12:15:03 +00:00
Refs: https://blog.readthedocs.com/migrate-configuration-v2/ Signed-off-by: Mike Fiedler <miketheman@gmail.com>
24 lines
537 B
YAML
24 lines
537 B
YAML
# .readthedocs.yaml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Set the version of Python and other tools you might need
|
|
build:
|
|
os: ubuntu-22.04
|
|
apt_packages:
|
|
- "graphviz"
|
|
tools:
|
|
python: "3.12"
|
|
|
|
sphinx:
|
|
configuration: conf.py
|
|
|
|
# We recommend specifying your dependencies to enable reproducible builds:
|
|
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
python:
|
|
install:
|
|
- requirements: requirements.txt
|