* [PATCH] docs: Update intersphinx_mapping
@ 2024-12-05 16:45 fredrik
2024-12-07 14:19 ` Tomi Ollila
2024-12-08 13:13 ` David Bremner
0 siblings, 2 replies; 4+ messages in thread
From: fredrik @ 2024-12-05 16:45 UTC (permalink / raw)
To: notmuch; +Cc: Fredrik Lönnegren
From: Fredrik Lönnegren <fredrik@frelon.se>
Running `make dirhtml` in bindings/python/docs generates the following
error:
```
sphinx-build -b dirhtml -d build/doctrees source build/dirhtml
Running Sphinx v8.0.2
loading translations [en]... done
making output directory... done
Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`.
ERROR: Invalid value `None` in intersphinx_mapping['https://docs.python.org/']. Expected a two-element tuple or list.
```
This commit updates intersphinx_mapping to follow the latest docs [1]
[1] https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html
Signed-off-by: Fredrik Lönnegren <fredrik@frelon.se>
---
bindings/python/docs/source/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py
index 8b43c5ca3f9f..bd4c8b17d94f 100644
--- a/bindings/python/docs/source/conf.py
+++ b/bindings/python/docs/source/conf.py
@@ -206,4 +206,4 @@ latex_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/': None}
+intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
--
2.47.1
\r
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: Update intersphinx_mapping
2024-12-05 16:45 [PATCH] docs: Update intersphinx_mapping fredrik
@ 2024-12-07 14:19 ` Tomi Ollila
2024-12-07 14:23 ` Dan Čermák
2024-12-08 13:13 ` David Bremner
1 sibling, 1 reply; 4+ messages in thread
From: Tomi Ollila @ 2024-12-07 14:19 UTC (permalink / raw)
To: fredrik, notmuch; +Cc: Fredrik Lönnegren
On Thu, Dec 05 2024, fredrik@frelon.se wrote:
> From: Fredrik Lönnegren <fredrik@frelon.se>
>
> Running `make dirhtml` in bindings/python/docs generates the following
> error:
>
> ```
> sphinx-build -b dirhtml -d build/doctrees source build/dirhtml
> Running Sphinx v8.0.2
> loading translations [en]... done
> making output directory... done
> Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`.
> ERROR: Invalid value `None` in intersphinx_mapping['https://docs.python.org/']. Expected a two-element tuple or list.
> ```
>
> This commit updates intersphinx_mapping to follow the latest docs [1]
Looks good to me, I did not follow [1] (nor tested, too lazy for that), but
did look some random links which also showed the same syntax as in this
change.
Is it so that the line has never been exercised -- or has the current
syntax worked before..?
Tomi
>
> [1] https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html
>
> Signed-off-by: Fredrik Lönnegren <fredrik@frelon.se>
> ---
> bindings/python/docs/source/conf.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py
> index 8b43c5ca3f9f..bd4c8b17d94f 100644
> --- a/bindings/python/docs/source/conf.py
> +++ b/bindings/python/docs/source/conf.py
> @@ -206,4 +206,4 @@ latex_documents = [
>
>
> # Example configuration for intersphinx: refer to the Python standard library.
> -intersphinx_mapping = {'https://docs.python.org/': None}
> +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
> --
> 2.47.1
>
> _______________________________________________
> notmuch mailing list -- notmuch@notmuchmail.org
> To unsubscribe send an email to notmuch-leave@notmuchmail.org\r
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: Update intersphinx_mapping
2024-12-07 14:19 ` Tomi Ollila
@ 2024-12-07 14:23 ` Dan Čermák
0 siblings, 0 replies; 4+ messages in thread
From: Dan Čermák @ 2024-12-07 14:23 UTC (permalink / raw)
To: notmuch
On December 7, 2024 2:19:26 PM UTC, Tomi Ollila <tomi.ollila@iki.fi> wrote:
>On Thu, Dec 05 2024, fredrik@frelon.se wrote:
>
>> From: Fredrik Lönnegren <fredrik@frelon.se>
>>
>> Running `make dirhtml` in bindings/python/docs generates the following
>> error:
>>
>> ```
>> sphinx-build -b dirhtml -d build/doctrees source build/dirhtml
>> Running Sphinx v8.0.2
>> loading translations [en]... done
>> making output directory... done
>> Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`.
>> ERROR: Invalid value `None` in intersphinx_mapping['https://docs.python.org/']. Expected a two-element tuple or list.
>> ```
>>
>> This commit updates intersphinx_mapping to follow the latest docs [1]
>
>Looks good to me, I did not follow [1] (nor tested, too lazy for that), but
>did look some random links which also showed the same syntax as in this
>change.
I have tested the change and already submitted it into the openSUSE tumbleweed package to fix its builds.
>
>Is it so that the line has never been exercised -- or has the current
>syntax worked before..?
I think it worked with sphinx <= 7.
Cheers,
Dan
>
>Tomi
>
>>
>> [1] https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html
>>
>> Signed-off-by: Fredrik Lönnegren <fredrik@frelon.se>
>> ---
>> bindings/python/docs/source/conf.py | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py
>> index 8b43c5ca3f9f..bd4c8b17d94f 100644
>> --- a/bindings/python/docs/source/conf.py
>> +++ b/bindings/python/docs/source/conf.py
>> @@ -206,4 +206,4 @@ latex_documents = [
>>
>>
>> # Example configuration for intersphinx: refer to the Python standard library.
>> -intersphinx_mapping = {'https://docs.python.org/': None}
>> +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
>> --
>> 2.47.1
>>
>> _______________________________________________
>> notmuch mailing list -- notmuch@notmuchmail.org
>> To unsubscribe send an email to notmuch-leave@notmuchmail.org
>_______________________________________________
>notmuch mailing list -- notmuch@notmuchmail.org
>To unsubscribe send an email to notmuch-leave@notmuchmail.org\r
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs: Update intersphinx_mapping
2024-12-05 16:45 [PATCH] docs: Update intersphinx_mapping fredrik
2024-12-07 14:19 ` Tomi Ollila
@ 2024-12-08 13:13 ` David Bremner
1 sibling, 0 replies; 4+ messages in thread
From: David Bremner @ 2024-12-08 13:13 UTC (permalink / raw)
To: fredrik, notmuch
fredrik@frelon.se writes:
> From: Fredrik Lönnegren <fredrik@frelon.se>
>
> Running `make dirhtml` in bindings/python/docs generates the following
> error:
>
Applied to master, _but_ I really wonder if the time has come to remove
these bindings. They were deprecated 2 years ago because of unfixable
memory management problems with recent versions of Python. If anyone
wants them to be in the next release (as opposed to just wanting the
build not to break), please speak up.
d\r
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-08 13:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 16:45 [PATCH] docs: Update intersphinx_mapping fredrik
2024-12-07 14:19 ` Tomi Ollila
2024-12-07 14:23 ` Dan Čermák
2024-12-08 13:13 ` David Bremner
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).