2020-08-20 02:03:22 +00:00
|
|
|
# Copyright The PyTorch Lightning team.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2019-07-25 01:03:24 +00:00
|
|
|
# .readthedocs.yml
|
|
|
|
# Read the Docs configuration file
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
|
|
# Required
|
|
|
|
version: 2
|
|
|
|
|
2021-06-08 16:30:13 +00:00
|
|
|
submodules:
|
|
|
|
include: all
|
|
|
|
recursive: true
|
|
|
|
|
2019-11-28 17:48:55 +00:00
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
2020-05-14 12:25:06 +00:00
|
|
|
# reference: https://docs.readthedocs.io/en/stable/config-file/v2.html#sphinx
|
2019-11-28 17:48:55 +00:00
|
|
|
sphinx:
|
2022-06-15 14:54:53 +00:00
|
|
|
configuration: docs/source-pytorch/conf.py
|
2020-05-22 00:30:40 +00:00
|
|
|
fail_on_warning: true
|
2019-11-28 17:48:55 +00:00
|
|
|
|
2019-07-25 01:03:24 +00:00
|
|
|
# Build documentation with MkDocs
|
2019-11-28 17:48:55 +00:00
|
|
|
#mkdocs:
|
|
|
|
# configuration: mkdocs.yml
|
2019-07-25 01:03:24 +00:00
|
|
|
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
2020-05-22 00:30:40 +00:00
|
|
|
formats:
|
|
|
|
- htmlzip
|
2021-08-05 14:54:33 +00:00
|
|
|
#- pdf
|
2019-07-25 01:03:24 +00:00
|
|
|
|
2021-12-02 11:46:57 +00:00
|
|
|
build:
|
|
|
|
os: ubuntu-20.04
|
|
|
|
tools:
|
|
|
|
python: "3.9"
|
|
|
|
apt_packages:
|
|
|
|
- texlive-latex-extra
|
|
|
|
- dvipng
|
|
|
|
- texlive-pictures
|
|
|
|
|
2019-07-25 01:03:24 +00:00
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
|
|
|
python:
|
|
|
|
install:
|
2020-06-13 14:15:22 +00:00
|
|
|
- requirements: requirements/docs.txt
|
2020-10-18 18:40:18 +00:00
|
|
|
#- requirements: requirements.txt
|
2022-06-15 14:54:53 +00:00
|
|
|
- method: pip
|
|
|
|
path: .
|