G
gillian
7ef3fe8fb1
Some checks failed
Test with tox / Test with tox (3.11) (pull_request) Successful in 15m58s
Build Sphinx Docs Set / Build Docs (pull_request) Successful in 18m3s
Build Project / Build Project (3.10) (pull_request) Successful in 21m51s
Test with tox / Test with tox (3.10) (pull_request) Failing after 21m59s
Build Project / Build Project (3.11) (pull_request) Successful in 22m37s
Build Project / Build Project (3.12) (pull_request) Successful in 22m35s
Test with tox / Test with tox (3.12) (pull_request) Successful in 6m53s
This reverts commit 70c790cadd.
25 lines
728 B
YAML
25 lines
728 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Set the OS, Python version, and other tools you might need
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3.10"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install poetry
|
|
# https://python-poetry.org/docs/#installing-manually
|
|
- pip install poetry
|
|
post_install:
|
|
# Install dependencies with 'docs' dependency group
|
|
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
|
|
# VIRTUAL_ENV needs to be set manually for now, see #11150
|
|
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install
|
|
|
|
sphinx:
|
|
configuration: docs/source/conf.py
|