mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 21:07:34 -04:00
Cairo libraries are required for a python dependency. New RTD config introduced to fix build errors introduced by new urllib. We need to ensure the docs a built on a modern ubuntu with a sufficiently new python (see https://github.com/readthedocs/readthedocs.org/issues/10290).
20 lines
425 B
YAML
20 lines
425 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
|
|
tools:
|
|
python: "3.11"
|
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
sphinx:
|
|
configuration: doc/conf.py
|
|
|
|
python:
|
|
install:
|
|
- requirements: doc/requirements.txt
|