2022-04-06 07:19:51 +08:00
|
|
|
# Copyright (c) 1998 Lawrence Livermore National Security, LLC and other
|
2020-02-22 06:04:54 +08:00
|
|
|
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
2020-01-19 09:55:17 +08:00
|
|
|
# .readthedocs.yml
|
|
|
|
|
# Read the Docs configuration file
|
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
|
|
|
|
# Required
|
|
|
|
|
version: 2
|
|
|
|
|
|
2023-01-12 07:19:10 +08:00
|
|
|
# Set the version of Python and other tools you might need
|
|
|
|
|
build:
|
|
|
|
|
os: ubuntu-22.04
|
|
|
|
|
tools:
|
|
|
|
|
python: "3.11"
|
|
|
|
|
|
2020-01-19 09:55:17 +08:00
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
|
|
|
sphinx:
|
|
|
|
|
configuration: src/docs/usr-manual/conf.py
|
|
|
|
|
|
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
|
|
|
|
formats: all
|
|
|
|
|
|
|
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
|
|
|
|
python:
|
|
|
|
|
install:
|
|
|
|
|
- requirements: src/docs/usr-manual/requirements.txt
|