20 lines
441 B
YAML
20 lines
441 B
YAML
version: 2
|
|
formats: all
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3.12"
|
|
apt_packages:
|
|
- libgirepository1.0-dev
|
|
- gir1.2-pango-1.0
|
|
- graphviz
|
|
jobs:
|
|
pre_install:
|
|
- pip install --constraint=.github/constraints.txt poetry
|
|
- poetry config virtualenvs.create false
|
|
post_install:
|
|
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
|
|
sphinx:
|
|
configuration: docs/conf.py
|
|
fail_on_warning: true
|