From f2efcc5196d20a9680c49b946f60f3df542729ee Mon Sep 17 00:00:00 2001 From: Giuseppe Steduto Date: Tue, 27 Jun 2023 12:19:10 +0200 Subject: [PATCH] docs: add .readthedocs.yaml to migrate to RTD v2 Closes reanahub/reana#710. --- .readthedocs.yaml | 19 +++++++++++++++++++ MANIFEST.in | 1 + 2 files changed, 20 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..1240941f --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,19 @@ +# This file is part of REANA. +# Copyright (C) 2023 CERN. +# +# REANA is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details. + +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.8" + +sphinx: + configuration: docs/conf.py + +python: + install: + - requirements: docs/requirements.txt diff --git a/MANIFEST.in b/MANIFEST.in index ac3d6bc6..51862220 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -15,6 +15,7 @@ include docs/cmd_list.txt include docs/requirements.txt include pytest.ini include tox.ini +exclude .readthedocs.yaml prune docs/_build recursive-include docs *.png recursive-include docs *.py