From 29c91a342e0a24014b1135681494a8fef4c7f145 Mon Sep 17 00:00:00 2001 From: Rob Date: Mon, 22 Jun 2026 12:20:47 -0400 Subject: [PATCH] fix(ci): sync test-minimum-versions job with current pyproject.toml minimums After PRs #11, #12, and #15 bumped httpx, click, and pytest minimums in pyproject.toml, the hardcoded versions in the test-minimum-versions CI job were not updated, causing it to test below the declared minimums. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d3ec0f..fd426d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,8 +72,8 @@ jobs: run: | python -m pip install --upgrade pip # Install minimum versions from pyproject.toml - pip install httpx==0.27.0 python-dotenv==1.0.0 click==8.1.0 rich==13.0.0 - pip install pytest==8.2.0 pytest-asyncio==0.24.0 pytest-cov==4.1.0 + pip install httpx==0.28.1 python-dotenv==1.0.0 click==8.3.2 rich==13.0.0 + pip install pytest==8.4.2 pytest-asyncio==0.24.0 pytest-cov==4.1.0 pip install -e . --no-deps - name: Run tests