blob: 90ee5c7677299540bdd1e2b2b7d94f2cbe56865b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
apt_packages:
- graphviz
python:
install:
- requirements: doc/developer/requirements.txt
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: doc/developer/conf.py
|