From c8cda81e625573f529c8529121a4fcca9dac2aa4 Mon Sep 17 00:00:00 2001 From: Louis Carpentier <54282224+LouisCarpentier42@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:20:34 +0200 Subject: [PATCH 1/2] Create .readthedocs.yaml --- .readthedocs.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..ab7d60b --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# .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 OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/conf.py + +# 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: requirements.txt + - requirements: requirements-dev.txt From df2d672b2a801ec76bbe47296a8123a4553c497c Mon Sep 17 00:00:00 2001 From: LouisCarpentier42 Date: Wed, 9 Oct 2024 09:21:29 +0200 Subject: [PATCH 2/2] Update dev requirements --- requirements-doc.txt => requirements-dev.txt | 3 ++- requirements-test.txt | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) rename requirements-doc.txt => requirements-dev.txt (65%) delete mode 100644 requirements-test.txt diff --git a/requirements-doc.txt b/requirements-dev.txt similarity index 65% rename from requirements-doc.txt rename to requirements-dev.txt index cb7a9d9..32a46c6 100644 --- a/requirements-doc.txt +++ b/requirements-dev.txt @@ -1,4 +1,5 @@ sphinx toml sphinx_rtd_theme -nbsphinx \ No newline at end of file +nbsphinx +pytest \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt deleted file mode 100644 index 55b033e..0000000 --- a/requirements-test.txt +++ /dev/null @@ -1 +0,0 @@ -pytest \ No newline at end of file