Skip to content

Commit

Permalink
docs: try to unbreak the readthedocs.io build
Browse files Browse the repository at this point in the history
It was failing with a message:

  Config validation error in build.os. Value os not found.

Apparently, the v2 config file is mandatory, so let's do that.

Change-Id: I267d5314db026de532b2b6644f500d25de08e343
  • Loading branch information
jktjkt committed Jan 24, 2024
1 parent 05e3011 commit ccd9c81
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
version: 2
build:
image: latest
os: ubuntu-22.04
tools:
python: "3.12"

python:
version: 3.8
requirements_file: docs/requirements.txt
install:
- method: pip
path: .
extra_requirements:
- docs

sphinx:
configuration: docs/conf.py

0 comments on commit ccd9c81

Please sign in to comment.