From 769d44fd15d85165d069ea47962c03015f04e4a1 Mon Sep 17 00:00:00 2001 From: Wolf2323 Date: Tue, 4 Feb 2025 12:20:29 +0100 Subject: [PATCH] updated mkdocs material to the latest version, so the latest mermaid version is used --- docs/setup-docs-dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup-docs-dependencies.py b/docs/setup-docs-dependencies.py index ab7844d..19d002f 100644 --- a/docs/setup-docs-dependencies.py +++ b/docs/setup-docs-dependencies.py @@ -14,7 +14,7 @@ def get_install_requires(): mkdocs_enabled = os.environ.get('MKDOCS_MATERIAL_INSIDERS_ENABLED') if mkdocs_enabled == 'true': return [ - f'git+https://{mkdocs_token}@github.com/squidfunk/mkdocs-material-insiders.git@9.5.33-insiders-4.53.12', + f'git+https://{mkdocs_token}@github.com/squidfunk/mkdocs-material-insiders.git@9.6.2-insiders-4.53.15', 'pillow', 'cairosvg', ] + common_dependencies @@ -23,7 +23,7 @@ def get_install_requires(): + "but 'MKDOCS_MATERIAL_INSIDERS_ENABLED' is not set to 'true', " + "so if you serve mkdocs you will serve the normal version!" + "\033[0m") - return ['mkdocs-material==9.5.33'] + common_dependencies + return ['mkdocs-material==9.6.2'] + common_dependencies subprocess.run(['pip', 'install'] + get_install_requires())