Ensure Python 3.10 & 3.11 compatability (#1815)

CI: Ensure compatability with Python 3.10 & 3.11

---------

Co-authored-by: Reinier van der Leer <github@pwuts.nl>
pull/1875/head^2
Drikus Roor 2023-04-19 01:38:42 +02:00 committed by GitHub
parent 74aa4add1b
commit 24d5e1fc8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 7 deletions

View File

@ -9,7 +9,7 @@ jobs:
environment: benchmark
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']
steps:
- name: Check out repository

View File

@ -13,18 +13,17 @@ concurrency:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
env:
min-python-version: '3.10'
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ env.min-python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.min-python-version }}
- name: Install dependencies
run: |
@ -46,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']
steps:
- name: Check out repository