From 9dbf2b54c5e18522c0bab53b1f3133e2fa648b0c Mon Sep 17 00:00:00 2001 From: Jules Jacobsen Date: Tue, 27 Feb 2024 14:08:04 +0000 Subject: [PATCH] Add .readthedocs.yaml --- .readthedocs.yaml | 35 +++++++++++++++++++++++++++++++++++ docs/conf.py | 4 ++-- 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..987d52e35 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,35 @@ +# Read the Docs configuration file for Sphinx projects +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + # You can also specify other tool versions: + # nodejs: "20" + # rust: "1.70" + # golang: "1.20" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/conf.py + # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs + # builder: "dirhtml" + # Fail on all warnings to avoid broken references + # fail_on_warning: true + +# Optionally build your docs in additional formats such as PDF and ePub +formats: + - pdf + - epub + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index e7d648ed7..1492368f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,11 +55,11 @@ # -- Project information ----------------------------------------------------- project = u'exomiser' -copyright = u'2021, Jules Jacobsen, Damian Smedley, Peter Robinson' +copyright = u'2024, Jules Jacobsen, Damian Smedley, Peter Robinson' author = u'Jules Jacobsen, Damian Smedley, Peter Robinson' # The short X.Y version -version = u'13.1.0' +version = u'14.0.0' # The full version, including alpha/beta/rc tags release = version