From 9484ba6864019e0f1005497f170876e80f2ee0b1 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sun, 28 Jul 2024 19:38:12 -0700 Subject: [PATCH] GHA drop py3.5 --- .github/workflows/build.yml | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6eece4a..6f0323a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,40 +14,24 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "windows-latest", "macos-latest"] - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.x"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.x"] exclude: - # missing Microsoft Visual C++ 14.0 - - os: windows-latest - python-version: "3.5" - - # GHA doesn't list 3.5, or 3.6 for ubuntu-22.04 - - os: ubuntu-latest - python-version: "3.5" + # GHA doesn't list 3.6 for ubuntu-22.04 - os: ubuntu-latest python-version: "3.6" # MacOS 14.4.1 for arm64 doesn't support Python < 3.8 - - os: macos-latest - python-version: "3.5" - os: macos-latest python-version: "3.6" - os: macos-latest python-version: "3.7" include: - # has Microsoft Visual C++ 14.0 - - os: windows-2019 - python-version: "3.5" - - # GHA doesn't list 3.5, or 3.6 for ubuntu-22 - - os: ubuntu-20.04 - python-version: "3.5" + # GHA doesn't list 3.6 for ubuntu-22 - os: ubuntu-20.04 python-version: "3.6" # MacOS 13 required for Python < 3.8 - - os: macos-13 - python-version: "3.5" - os: macos-13 python-version: "3.6" - os: macos-13