From 1abcc6e6bb8a0de24b13ca0e881a385092903226 Mon Sep 17 00:00:00 2001 From: Roberto Arista Date: Tue, 5 Dec 2023 10:13:51 +0100 Subject: [PATCH 1/2] Align name to the other robotools repos (including DrawBot) --- README.rst | 2 +- dev-requirements.txt => requirements-dev.txt | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename dev-requirements.txt => requirements-dev.txt (100%) diff --git a/README.rst b/README.rst index a2ace24a..a7b8e770 100644 --- a/README.rst +++ b/README.rst @@ -87,7 +87,7 @@ Before you can run the test suite you’ll need to install the test dependencies .. code:: sh - pip install -r dev-requirements.txt + pip install -r requirements-dev.txt To run the test suite you can do: diff --git a/dev-requirements.txt b/requirements-dev.txt similarity index 100% rename from dev-requirements.txt rename to requirements-dev.txt From 22d33e965bd144fea0cd8f1a9e4f34c39f33568b Mon Sep 17 00:00:00 2001 From: Roberto Arista Date: Tue, 5 Dec 2023 10:14:01 +0100 Subject: [PATCH 2/2] Add readthedocs yaml configuration --- .readthedocs.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..1c412c18 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,18 @@ +# 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" + +sphinx: + configuration: documentation/source/conf.py + +python: + install: + - requirements: requirements.txt \ No newline at end of file