From 38c8fe8fd548d67b48d0848c1f8e519f31032031 Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Tue, 23 Nov 2021 13:09:48 +0100 Subject: [PATCH] Re-exclude Python 3.10 from CI matrix --- .github/workflows/pytest.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index f4d23301..b91c103c 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -21,15 +21,16 @@ jobs: - ubuntu-latest - windows-latest python-version: - - "3.7" # Earliest version supported by genno; matches xarray + - "3.7" # Earliest version supported by genno; matches xarray/setup.cfg - "3.8" - - "3.9" - - "3.10" # Latest Python release / latest testable on GitHub Actions - - # For development versions of Python, compiled binary wheels are not - # available for some dependencies, e.g. llvmlite, numba, numpy, and/or - # pandas. Compiling these on the job runner requires a more elaborate - # build environment, currently out of scope for genno. + - "3.9" # Latest testable on GitHub Actions + + # For new releases or development versions of Python, compiled binary + # wheels may not be available for some dependencies, e.g. llvmlite, + # numba, numpy, and/or pandas. Compiling these on the job runner + # requires a more elaborate build environment, currently out of scope + # for genno. Exclude these versions from CI. + # - "3.10" # Latest Python release / latest supported by genno # - "3.11.0-alpha.2" # Development version fail-fast: false