From 3f8226c3248c08f30454fc4ab467738fed14d93b Mon Sep 17 00:00:00 2001 From: Federico Montesino Pouzols Date: Fri, 27 Mar 2026 10:27:07 +0100 Subject: [PATCH 1/3] update casacore extra req for pip, #559 --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index a95a327c..425cc33f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,7 +16,7 @@ python: - method: pip path: . extra_requirements: - - python-casacore + - casacore # Configuration for Sphinx documentation sphinx: From 53a838d40d2c94cbbfc55234d4af8512408ff89a Mon Sep 17 00:00:00 2001 From: Federico Montesino Pouzols Date: Fri, 27 Mar 2026 10:27:34 +0100 Subject: [PATCH 2/3] nitpicky-ignore many warnings about optional, #559 --- docs/source/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index a258e357..56a7aaf8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -91,6 +91,11 @@ nitpicky = True +# Ignore nitpicky warnings related to Python built-ins and the like +# (https://stackoverflow.com/questions/11417221/sphinx-autodoc-gives-warning-pyclass-reference-target-not-found-type-warning) +# (https://bugs.python.org/issue11975) +nitpick_ignore = [('py:class', 'optional')] + intersphinx_mapping = { "python": ("https://docs.python.org/3", None), "astropy": ("https://docs.astropy.org/en/stable", None), From 2aba15dae1010100904618656304932d3efeeb94 Mon Sep 17 00:00:00 2001 From: Federico Montesino Pouzols Date: Fri, 27 Mar 2026 10:49:54 +0100 Subject: [PATCH 3/3] fix conf.py formatting, #559 --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 56a7aaf8..dbcf3f18 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -94,7 +94,7 @@ # Ignore nitpicky warnings related to Python built-ins and the like # (https://stackoverflow.com/questions/11417221/sphinx-autodoc-gives-warning-pyclass-reference-target-not-found-type-warning) # (https://bugs.python.org/issue11975) -nitpick_ignore = [('py:class', 'optional')] +nitpick_ignore = [("py:class", "optional")] intersphinx_mapping = { "python": ("https://docs.python.org/3", None),