From 801b510e237464dae406d06b19af0222cd74c74e Mon Sep 17 00:00:00 2001 From: Adrian D'Alessandro Date: Mon, 23 Mar 2026 12:05:17 +0000 Subject: [PATCH] Restrict mkdocs version to < 2 MkDocs 2.0 is coming and it will be incompatible with Mkdocs-material, which we use for the developer docs. For now, pin the version of mkdocs to prevent an automatic update https://squidfunk.github.io/mkdocs-material/blog/2026/02/18/mkdocs-2.0/ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9ed0e5f8..741b496b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ dev = [ "types-django-import-export", ] doc = [ - "mkdocs", + "mkdocs<2", "mkdocstrings", "mkdocstrings-python", "mkdocs-material",