From 2026482aff816f9874782cf352949886b3b79aa1 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Mon, 2 Jun 2025 15:41:28 +1200 Subject: [PATCH 1/2] Test in CI with lowest resolution methodology using uv --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c7218a..8d7321c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,12 @@ jobs: matrix: python-version: ["3.11", "3.12", "3.13"] os: ["ubuntu-latest", "macos-latest", "windows-latest"] + resolution: ["latest"] + include: + - python-version: "3.11" + os: "ubuntu-latest" + resolution: "lowest-direct" + steps: - uses: actions/checkout@v3 @@ -31,7 +37,7 @@ jobs: - name: Install dependencies run: | python --version - uv sync + uv sync --resolution ${{ matrix.resolution }} - name: Build run: | From 96567d960c44cb0ede0d9875e9188489effa57a6 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Mon, 2 Jun 2025 15:43:44 +1200 Subject: [PATCH 2/2] Fix highest resolution name --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d7321c..cb9bccc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: matrix: python-version: ["3.11", "3.12", "3.13"] os: ["ubuntu-latest", "macos-latest", "windows-latest"] - resolution: ["latest"] + resolution: ["highest"] include: - python-version: "3.11" os: "ubuntu-latest"