From 79bb67402577b62b3b24988fd29ef56e58805741 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 11:04:48 -0400 Subject: [PATCH 01/13] Update .readthedocs.yaml readthedocs updated --- .readthedocs.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index ef9ddc6..e340475 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -5,6 +5,11 @@ # Required version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3.12" + # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py @@ -13,4 +18,4 @@ sphinx: python: version: 3.8 install: - - requirements: docs/requirements.txt \ No newline at end of file + - requirements: docs/requirements.txt From 8b1adab4b6d5c9f3f675f020521c25580294d7c3 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 11:07:19 -0400 Subject: [PATCH 02/13] Update .readthedocs.yaml readthedocs updated --- .readthedocs.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index e340475..2046e3d 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,6 +16,5 @@ sphinx: # Optionally set the version of Python and requirements required to build your docs python: - version: 3.8 install: - requirements: docs/requirements.txt From 5834b784df35980a5fe6c00ff7c99d2694ef58cd Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 11:08:42 -0400 Subject: [PATCH 03/13] Update .readthedocs.yaml --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2046e3d..fe13026 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.12" + python: "3.11" # Build documentation in the docs/ directory with Sphinx sphinx: From 8752baf4d6de402cb42a11b5a8b06e1130b0edb6 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 14:23:54 -0400 Subject: [PATCH 04/13] Update .readthedocs.yaml --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index fe13026..2046e3d 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.11" + python: "3.12" # Build documentation in the docs/ directory with Sphinx sphinx: From 52bf939fd3545b1b87ed6a7bb129bc6b4e71da5f Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 16:59:21 -0400 Subject: [PATCH 05/13] Update .readthedocs.yaml --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2046e3d..0312381 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.12" + python: "3.8" # Build documentation in the docs/ directory with Sphinx sphinx: From 72860ff6dd258f8666b584192138fbfa5e43a5f1 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:06:40 -0400 Subject: [PATCH 06/13] Update conf.py read the docs config updated --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 4324663..5ccd9f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,3 +74,8 @@ # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] +# python3 -m sphinx.ext.intersphinx https://docs.python-requests.org/en/master/objects.inv +intersphinx_mapping = { + 'requests': ('https://docs.python-requests.org/en/master/', None), + 'python': ('https://docs.python.org/3', None) +} From c7619d6ae7949a69668abcc0dd2afa8ad7d3b32f Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:08:32 -0400 Subject: [PATCH 07/13] Update .readthedocs.yaml python version updated --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 0312381..2046e3d 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.8" + python: "3.12" # Build documentation in the docs/ directory with Sphinx sphinx: From 87245f955729b7ba3824403228741e0f45801568 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:22:19 -0400 Subject: [PATCH 08/13] Update requirements.txt sphinx version updated --- docs/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 4f61efd..c01dc75 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ -sphinx==3.5.4 +sphinx==5.1.1 sphinxcontrib-bibtex sphinx-copybutton pandas pynmrstar>=3.0.4 plotly>=4.5.4 -numpy>=1.15.0 \ No newline at end of file +numpy>=1.15.0 From 4b991d1d07b3b579d94a3f36ff1381406827448a Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:30:15 -0400 Subject: [PATCH 09/13] Update conf.py read the docs theme updated --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5ccd9f7..9df8e30 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,8 +52,8 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -# html_theme = 'alabaster' -html_theme = 'sphinx_rtd_theme' +html_theme = 'alabaster' +# html_theme = 'sphinx_rtd_theme' # html_theme_options = { # 'analytics_id': 'G-CH3JS5076R', # Provided by Google in your dashboard # 'analytics_anonymize_ip': False, From 5c7a820d5589ba6fff2f74872b4a950f96d219b4 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:34:30 -0400 Subject: [PATCH 10/13] Update conf.py sphinx theme updated --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9df8e30..f0d5f23 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,8 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = 'classic' +#html_theme = 'alabaster' # html_theme = 'sphinx_rtd_theme' # html_theme_options = { # 'analytics_id': 'G-CH3JS5076R', # Provided by Google in your dashboard From acc0c3854c3ce4ba0b26fc9d0bff89ccb815a477 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:38:45 -0400 Subject: [PATCH 11/13] Update conf.py --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f0d5f23..faa9f72 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,8 +53,7 @@ # a list of builtin themes. # html_theme = 'classic' -#html_theme = 'alabaster' -# html_theme = 'sphinx_rtd_theme' + # html_theme_options = { # 'analytics_id': 'G-CH3JS5076R', # Provided by Google in your dashboard # 'analytics_anonymize_ip': False, From c0b5dbbe54a20d70a29d573d086e153536cf9fdf Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:42:49 -0400 Subject: [PATCH 12/13] Update requirements.txt rtd theme required --- docs/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/requirements.txt b/docs/requirements.txt index c01dc75..fd49df5 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -5,3 +5,4 @@ pandas pynmrstar>=3.0.4 plotly>=4.5.4 numpy>=1.15.0 +sphinx_rtd_theme From 35d34e28e86adf5fb777564ba377b23ec5f3a461 Mon Sep 17 00:00:00 2001 From: Kumaran Baskaran Date: Thu, 24 Jul 2025 17:53:43 -0400 Subject: [PATCH 13/13] Update conf.py --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index faa9f72..77ed362 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'classic' +html_theme = 'sphinx_rtd_theme' # html_theme_options = { # 'analytics_id': 'G-CH3JS5076R', # Provided by Google in your dashboard