From 77eed65d549db7197f495ff589790b59409841f9 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Sun, 25 Jun 2023 22:54:33 +0200 Subject: [PATCH] backend, keygen, messaging, python: add now required .readthedocs.yaml Fix #2771 --- backend/.readthedocs.yaml | 22 ++++++++++++++++++++++ keygen/.readthedocs.yaml | 22 ++++++++++++++++++++++ messaging/.readthedocs.yaml | 22 ++++++++++++++++++++++ python/.readthedocs.yaml | 22 ++++++++++++++++++++++ 4 files changed, 88 insertions(+) create mode 100644 backend/.readthedocs.yaml create mode 100644 keygen/.readthedocs.yaml create mode 100644 messaging/.readthedocs.yaml create mode 100644 python/.readthedocs.yaml diff --git a/backend/.readthedocs.yaml b/backend/.readthedocs.yaml new file mode 100644 index 000000000..bea0a5786 --- /dev/null +++ b/backend/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: backend/docs/source/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: backend/docs/requirements.txt diff --git a/keygen/.readthedocs.yaml b/keygen/.readthedocs.yaml new file mode 100644 index 000000000..f490702d5 --- /dev/null +++ b/keygen/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: keygen/docs/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: keygen/requirements.txt diff --git a/messaging/.readthedocs.yaml b/messaging/.readthedocs.yaml new file mode 100644 index 000000000..cc4972fcc --- /dev/null +++ b/messaging/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: messaging/docs/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: messaging/requirements.txt diff --git a/python/.readthedocs.yaml b/python/.readthedocs.yaml new file mode 100644 index 000000000..37539e449 --- /dev/null +++ b/python/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: python/docs/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: python/requirements.readthedocs.txt