From 2e4d77fb180a900efc19a3fd446fa2be75bb3e69 Mon Sep 17 00:00:00 2001 From: scivision Date: Wed, 8 Jan 2025 01:03:58 -0500 Subject: [PATCH] ci: handle minimum python on runner images --- .github/workflows/ci.yml | 2 +- .github/workflows/ci_stdlib_only.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a33879a..01b82de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: name: ${{ matrix.os }} Python ${{ matrix.python-version }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] os: [ubuntu-latest] include: - os: macos-latest diff --git a/.github/workflows/ci_stdlib_only.yml b/.github/workflows/ci_stdlib_only.yml index 490fa21..7d17e01 100644 --- a/.github/workflows/ci_stdlib_only.yml +++ b/.github/workflows/ci_stdlib_only.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] - os: ['ubuntu-latest'] + os: ['ubuntu-22.04'] include: - os: macos-latest python-version: '3.13'