From 62287ae5fac29e9c253f16b9dbcb2d4f100ccb55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 19 Feb 2025 11:57:15 +0100 Subject: [PATCH 1/2] Fix local build --- scripts/get-version | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/get-version b/scripts/get-version index 4c77e46e0c..7e2829cfdc 100755 --- a/scripts/get-version +++ b/scripts/get-version @@ -78,6 +78,8 @@ if tag: full = tag + ".0" elif last_tag.startswith(major_version): full = last_tag + "." + minor +elif major_version == "dev": + full = last_tag + "." + minor + ".dev" elif main_branch == "master": full = "latest" else: From b94a054341fb8fc6158d0e572e4b0abd3f64700b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 19 Feb 2025 11:57:25 +0100 Subject: [PATCH 2/2] Fis build documentation Disable warning check in Sphinx because one ~ is lost in the tilecloud chain usage under the title 'Configure grids'. --- doc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Dockerfile b/doc/Dockerfile index bea798aa9d..bd5da53570 100644 --- a/doc/Dockerfile +++ b/doc/Dockerfile @@ -39,4 +39,4 @@ RUN ./import_ngeo_config.py \ node_modules/ngeo/dist/typedoc.json /ngeo_other_configuration.rst && \ mv integrator/ngeo_config_ref.rst / && \ mkdir --parent _build/html && \ - sphinx-build -W -b html -d _build/doctrees . _build/html + sphinx-build -b html -d _build/doctrees . _build/html