From f8b35bb63490e3b21d5dc8af960495b54dd8fc55 Mon Sep 17 00:00:00 2001 From: Milas Bowman Date: Mon, 25 Jul 2022 13:51:19 -0400 Subject: [PATCH] ci: remove Python 3.6 and add 3.11 pre-releases * Python 3.6 went EOL Dec 2021 * Python 3.11 is in beta and due for GA release in October 2022 Signed-off-by: Milas Bowman --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a73bcbade..29e022a9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,12 @@ jobs: strategy: max-parallel: 1 matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-alpha - 3.11.0"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies