1version: 2 2 3build: 4 os: "ubuntu-22.04" 5 tools: 6 python: "3.6" 7 apt_packages: 8 - enchant-2 9 - hunspell-en-us 10 11# Build from the doc/ directory with Sphinx 12sphinx: 13 configuration: doc/conf.py 14 15# Explicitly set the version of Python and its requirements 16python: 17 install: 18 - requirements: doc/requirements.txt 19