Skip to content

Commit

Permalink
Fix readthedocs yaml
Browse files Browse the repository at this point in the history
Builds on readthedocs was failing due to a new requirement in
the yaml. Fix that to get the builds working again.

Signed-off-by: Urvashi Mohnani <[email protected]>
  • Loading branch information
umohnani8 committed Nov 9, 2023
1 parent 1a8624f commit 45feb5e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

formats:
- pdf
- epub

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
version: "3.6"
install:
- requirements: requirements.txt
- requirements: requirements.txt

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py
fail_on_warning: false

0 comments on commit 45feb5e

Please sign in to comment.