From 57854c7e2e56e669cf192ad61892f22cdc632b7c Mon Sep 17 00:00:00 2001 From: Igor Lins e Silva <4753812+igorls@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:59:05 -0300 Subject: [PATCH] ci: bump Windows and macOS jobs to Python 3.13 3.11 is mid-life; 3.13 is already on the Linux matrix and gives ~3.5 years of upstream support. Aligns the single-version platform jobs with the top of the Linux matrix. requires-python and lint job left alone. Refs #1192 (Option A). --- .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 57ef5f8..7c6bcaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: - python-version: "3.11" + python-version: "3.13" cache: 'pip' - run: pip install -e ".[dev]" - run: python -m pytest tests/ -v --ignore=tests/benchmarks --cov=mempalace --cov-report=term-missing --cov-fail-under=80 --durations=10 @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: - python-version: "3.11" + python-version: "3.13" cache: 'pip' - run: pip install -e ".[dev]" - run: python -m pytest tests/ -v --ignore=tests/benchmarks --cov=mempalace --cov-report=term-missing --cov-fail-under=80 --durations=10