From 0d3428fffc282af192a5488cbaeaa4dcab221947 Mon Sep 17 00:00:00 2001 From: dineshbaburam91 Date: Mon, 15 Jan 2024 11:32:49 +0530 Subject: [PATCH] Fixed readthedoc issue. Configuration file is required for readthedoc portal to build PyEZ docs. https://docs.readthedocs.io/en/stable/config-file/v2.html --- .readthedocs.yml | 20 ++++++++++++++++++++ docs/requirements.txt | 1 + 2 files changed, 21 insertions(+) create mode 100644 .readthedocs.yml create mode 100644 docs/requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..09a661143 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,20 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/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: + version: 3.12 + install: + - requirements: docs/requirements.txt + - requirements: requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 000000000..59aa86ccc --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +sphinx_bootstrap_theme