From cf1ecd5baec4d792c03b9eac578f69386ddcad68 Mon Sep 17 00:00:00 2001 From: Giuseppe Steduto Date: Tue, 27 Jun 2023 13:32:37 +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 6da2a3b0..e50f771e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -25,3 +25,4 @@ recursive-include docs *.rst recursive-include tests *.py recursive-include tests *.txt global-exclude *.py[co] .DS_Store +exclude .readthedocs.yaml