From b31df1050562f44aa5d59de65b28fc4855132775 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Thu, 2 Feb 2023 13:44:35 -0500 Subject: [PATCH] Set `min_python_version` in CI and respected `experimental` flag --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b498619..548d2dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,9 @@ on: branches: - main +env: + min_python_version: "3.9" + jobs: pre-commit: runs-on: ubuntu-latest @@ -61,6 +64,7 @@ jobs: - towncrier - package runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]