From b32b8ef58888b839bb45991351cd8027621dba0a Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Thu, 1 Feb 2024 09:00:14 +0100 Subject: [PATCH] move RTD configuration file (+symlink) --- .readthedocs.yaml | 30 +----------------------------- ci/readthedocs.yaml | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 29 deletions(-) mode change 100644 => 120000 .readthedocs.yaml create mode 100644 ci/readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index e39fa48f..00000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the version of Python and other tools you might need -build: - os: ubuntu-22.04 - tools: - python: "3.9" - -# Build documentation in the docs/ directory with Sphinx -sphinx: - builder: html - configuration: doc/source/conf.py - -# Optionally build your docs in additional formats such as PDF -#formats: -# - pdf - -# Optionally declare the Python requirements required to build your docs -python: - install: - - requirements: requirements.txt - - requirements: ci/requirements_rtd.txt - - method: pip - path: . diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 120000 index 00000000..8817d98b --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1 @@ +ci/readthedocs.yaml \ No newline at end of file diff --git a/ci/readthedocs.yaml b/ci/readthedocs.yaml new file mode 100644 index 00000000..e39fa48f --- /dev/null +++ b/ci/readthedocs.yaml @@ -0,0 +1,29 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.9" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + builder: html + configuration: doc/source/conf.py + +# Optionally build your docs in additional formats such as PDF +#formats: +# - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: requirements.txt + - requirements: ci/requirements_rtd.txt + - method: pip + path: .