From 88894e2cc97a8b01fed9a9fc99f2ff2861beac4b Mon Sep 17 00:00:00 2001 From: Jerry Date: Tue, 25 Oct 2022 17:03:21 -0700 Subject: [PATCH] Add python3.11 to CI (#108) * Add python 3.11 to CI * Exclude python 3.11 from macos test --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a92c18c6..e304de90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + exclude: + # excludes python 3.11 on macOS + - os: macos-latest + python-version: '3.11' steps: - uses: actions/checkout@v3