From 031ca9dc8239fecd895cd176b4de17d31e99579d Mon Sep 17 00:00:00 2001 From: "Jeremy M. G. Leung" Date: Sun, 13 Oct 2024 22:50:04 -0400 Subject: [PATCH] drop python 3.8, EOL --- .github/workflows/build.yaml | 5 +---- .github/workflows/test.yaml | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1cdd5b3f..57b738f0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,10 +24,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest", "macos-13", "macos-latest"] # macos-13 is x86_64, macos-latest is arm64 - python-version: [8, 9, 10, 11, 12] # sub-versions of Python - exclude: - - os: macos-14 - python-version: 8 + python-version: [9, 10, 11, 12] # sub-versions of Python steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f80221a9..206f93d5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -35,7 +35,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest", "macos-13", "macos-latest"] # macos-13 is x86-64, macos-latest is arm64 - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4