From cd0e1470293cfda87010a4a3a1183ba8cb80b9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Mon, 29 May 2023 09:43:58 +0200 Subject: [PATCH 1/2] Revert "contrib: Add more colors to extract_data" This reverts commit dfd0fab5b9600756b7eebc5b81379d277914bc3d. --- contrib/data_analysis/extract_data.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/contrib/data_analysis/extract_data.py b/contrib/data_analysis/extract_data.py index 5648a9a..f69eda1 100755 --- a/contrib/data_analysis/extract_data.py +++ b/contrib/data_analysis/extract_data.py @@ -49,9 +49,8 @@ """ -COLORS = ["#{0:02x}0000", "#{0:02x}0000", "#{0:02x}0000", "#00{0:02x}00", - "#00{0:02x}00", "#00{0:02x}00", "#0000{0:02x}", "#0000{0:02x}", - "#0000{0:02x}"] +COLORS = ["#{0:02x}0000", "#00{0:02x}00", "#0000{0:02x}", "#{0:02x}{0:02x}00", + "#{0:02x}00{0:02x}", "#00{0:02x}{0:02x}", "#{0:02x}{0:02x}{0:02x}"] def parse_args(): From 29f05cfc92a64ffc9d958d09a0c30d19a26a4b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 8 Aug 2023 06:30:11 +0200 Subject: [PATCH 2/2] Add .readthedocs.yaml configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lukáš Doktor --- .readthedocs.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..c35581a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,23 @@ +# .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.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: 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: requirements.txt +