From b71520330ca70b4552ac0759ed8929e1df568826 Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Mon, 2 Mar 2026 14:46:03 -0500 Subject: [PATCH] fix: rename consilium dependency to openadapt-consilium and revert Python 3.11 requirement The `consilium` name on PyPI belongs to another project. `openadapt-consilium` v0.3.2 is now published with requires-python >=3.10, so we can revert our temporary Python 3.11 bump and use the correct package name. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/test.yml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa781ec..0db1b68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index ac44719..ee7ebb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1.0" description = "LLM-powered social media announcements from your git history" readme = "README.md" license = "MIT" -requires-python = ">=3.11" +requires-python = ">=3.10" authors = [ { name = "Richard Abrich", email = "richard@openadapt.ai" }, ] @@ -35,7 +35,7 @@ dependencies = [ [project.optional-dependencies] consilium = [ - "consilium", + "openadapt-consilium", ] dev = [ "pytest>=7.0", @@ -44,7 +44,7 @@ dev = [ ] [tool.uv.sources] -consilium = { path = "../openadapt-consilium", editable = true } +openadapt-consilium = { path = "../openadapt-consilium", editable = true } [tool.hatch.build.targets.wheel] packages = ["herald"]