From d3282b49004cecb64c22a2712df2d137a4a788ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 20:03:32 +0000 Subject: [PATCH 1/3] Initial plan From 9e36b7814dd3ea552e1ed6e420a74b30b15ef733 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 20:08:15 +0000 Subject: [PATCH 2/3] Add ReadTheDocs configuration and fix language warning Co-authored-by: MattScicluna <19255250+MattScicluna@users.noreply.github.com> --- .readthedocs.yml | 16 ++++++++++++++++ Python/doc/source/conf.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..d4494c1 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,16 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +# Build documentation in the Python/doc directory +sphinx: + configuration: Python/doc/source/conf.py + +# Python version and requirements +python: + version: "3.12" + install: + - method: pip + path: Python + - requirements: Python/doc/source/requirements.txt diff --git a/Python/doc/source/conf.py b/Python/doc/source/conf.py index 6a84ca0..e5021f8 100644 --- a/Python/doc/source/conf.py +++ b/Python/doc/source/conf.py @@ -73,7 +73,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. From 62a445a698d8b720a15003f4176b5307234cf25a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 20:09:47 +0000 Subject: [PATCH 3/3] Fix ReadTheDocs config and remove circular dependency Co-authored-by: MattScicluna <19255250+MattScicluna@users.noreply.github.com> --- .readthedocs.yml | 5 +++-- Python/doc/source/requirements.txt | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index d4494c1..7f673e1 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,8 +9,9 @@ sphinx: # Python version and requirements python: - version: "3.12" + version: "3.11" install: - method: pip path: Python - - requirements: Python/doc/source/requirements.txt + - method: pip + requirements: Python/doc/source/requirements.txt diff --git a/Python/doc/source/requirements.txt b/Python/doc/source/requirements.txt index 81f7aec..48eed02 100644 --- a/Python/doc/source/requirements.txt +++ b/Python/doc/source/requirements.txt @@ -1,3 +1,2 @@ -./Python sphinx sphinxcontrib-napoleon