From c6d103eac7c3daf94ec3c7fb72c0812c11c9b78e Mon Sep 17 00:00:00 2001 From: Adrian Price-Whelan Date: Mon, 15 Jan 2024 18:36:11 -0500 Subject: [PATCH] remove 3.11 --- .github/workflows/packaging.yml | 2 +- .github/workflows/tests.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index d378d84..af0b6af 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -8,7 +8,7 @@ on: - main env: - CIBW_BUILD: "cp39-* cp310-* cp311-*" + CIBW_BUILD: "cp38-* cp39-* cp310-*" CIBW_SKIP: "*-win32 *musllinux* *i686*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01141c4..6a97bb8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,10 +16,10 @@ jobs: matrix: include: - - name: Python 3.11 with minimal dependencies and coverage + - name: Python 3.10 with minimal dependencies and coverage os: ubuntu-latest - python: "3.11" - toxenv: py311-test-cov + python: "3.10" + toxenv: py310-test-cov - name: Python 3.10 os: ubuntu-latest @@ -33,10 +33,10 @@ jobs: toxposargs: --durations=50 || true # override exit code # Mac: - - name: Python 3.11 standard tests (macOS) + - name: Python 3.10 standard tests (macOS) os: macos-latest - python: "3.11" - toxenv: py311-test + python: "3.10" + toxenv: py310-test # Older Python versions: - name: Python 3.9 with oldest supported version of all dependencies