Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readthedocs config to version 2 #2010

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
# SPDX-License-Identifier: MPL-2.0

# Default [] (epub, pdf, htmlzip)
# Note: PDF/epub/htmlzip output is not supported when using MkDocs
formats: []
version: 2

requirements_file: docs/requirements.txt
# Note: PDF/epub/htmlzip output is not supported when using MkDocs
formats:
- htmlzip
- pdf
- epub

build:
image: latest

python:
version: 3.7
os: ubuntu-22.04
tools:
python: "3.11"

sphinx:
builder: html
configuration: conf.py
fail_on_warning: true
configuration: docs/source/conf.py
fail_on_warning: false

python:
install:
- requirements: docs/requirements.txt

# see: https://docs.readthedocs.io/en/stable/config-file/v2.html#supported-settings
Loading