From 876f88f3e19ecf5c9b9301eb129eb11d8d888105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Swe=C3=B1a=20=28Swast=29?= Date: Fri, 9 Jan 2026 12:37:27 -0600 Subject: [PATCH 1/2] chore: remove language from sitemap paths --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 22868aab67..b44e1834d3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -267,6 +267,7 @@ # https://sphinx-sitemap.readthedocs.io/en/latest/getting-started.html#usage html_baseurl = "https://dataframes.bigquery.dev/" +sitemap_locales = [None] # -- Options for warnings ------------------------------------------------------ From 0e7b5cd751a7f2a481566971c695f59892978c23 Mon Sep 17 00:00:00 2001 From: Tim Swena Date: Fri, 9 Jan 2026 18:56:44 +0000 Subject: [PATCH 2/2] chore: exclude language --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index b44e1834d3..9883467edf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -269,6 +269,11 @@ html_baseurl = "https://dataframes.bigquery.dev/" sitemap_locales = [None] +# We don't have any immediate plans to translate the API reference, so omit the +# language from the URLs. +# https://sphinx-sitemap.readthedocs.io/en/latest/advanced-configuration.html#configuration-customizing-url-scheme +sitemap_url_scheme = "{link}" + # -- Options for warnings ------------------------------------------------------