From 2a53dc2d46b0c400468f4a020fd252121414e1be Mon Sep 17 00:00:00 2001 From: GeneAI Date: Thu, 16 Jul 2026 09:26:23 -0400 Subject: [PATCH] fix(deps): widen attune-author and attune-rag pins to <1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pins `attune-author[ai]>=0.23,<0.24` and `attune-rag>=0.1.22,<0.3` were stale — current releases are author 0.25.0 and rag 0.8.0, both excluded by the old upper bounds. Installing attune-gui alongside current siblings fails to resolve (or silently downgrades rag), forcing a `--no-deps` workaround. Widen both to `<1.0`, matching this file's own convention for attune-help (>=0.10.0,<1.0) and the pre-1.0 fastapi/uvicorn pins. Co-Authored-By: Claude Opus 4.8 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 44f3233..3e41972 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,8 @@ dependencies = [ "uvicorn[standard]>=0.27,<1.0", "pydantic>=2.0,<3.0", "structlog>=24.0,<26.0", - "attune-rag>=0.1.22,<0.3", - "attune-author[ai]>=0.23,<0.24", + "attune-rag>=0.1.22,<1.0", + "attune-author[ai]>=0.23,<1.0", "attune-help>=0.10.0,<1.0", "jinja2>=3.1,<4.0", "python-frontmatter>=1.1,<2.0",