From b58764ec648027c2d5a6acecbf25d083656260ca Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Wed, 1 Nov 2023 14:24:12 +0200 Subject: [PATCH] add readthedocs.yml and readthedocs requirements --- .readthedocs.yaml | 15 +++++++++++++++ docs/requirements.txt | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 .readthedocs.yaml create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..f7e3b63f --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,15 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.11" + +# Build from the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Explicitly set the version of Python and its requirements +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 00000000..c4a1bf7e --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,3 @@ +sphinx==7.2.6 +sphinx_rtd_theme==1.3.0 +readthedocs-sphinx-search==0.3.1 \ No newline at end of file