From 756aae2e0237b29e517af1dc216c8330e616ec42 Mon Sep 17 00:00:00 2001 From: Wesley B <62723358+wesleyboar@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:41:43 -0500 Subject: [PATCH] fix: relax mkdocs-tacc lower bound back to >=1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The >=1.0.4 pin added in #283 is unnecessary — any 1.x satisfies the requirement. Keeping >=1.0.0,<2.0.0 allows the latest 1.x to install. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3db45d45..64cdb5ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ maintainers = [ readme = "README.md" requires-python = ">=3.10,<3.13" dependencies = [ - "mkdocs-tacc[all] (>=1.0.4,<2.0.0)", + "mkdocs-tacc[all] (>=1.0.0,<2.0.0)", "mkdocs-exclude-search (>=0.6.6,<0.7.0)", "mkdocs-include-markdown-plugin (>=5.1.0,<6.0.0)", ]