From 826c73aa025680862f082eff4781ce1cb3b4b91c Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Wed, 27 Sep 2023 12:19:38 -0400 Subject: [PATCH] Add python 3.11 testing, update github actions envs --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6b24bf8..7273efa 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,16 +9,16 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: max-parallel: 4 matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies