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
parent
74aa4add1b
commit
24d5e1fc8a
|
@ -9,7 +9,7 @@ jobs:
|
|||
environment: benchmark
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.10']
|
||||
python-version: ['3.10', '3.11']
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue