Skip to content

Commit

Permalink
Ensure Python 3.10 & 3.11 compatability (#1815)
Browse files Browse the repository at this point in the history
CI: Ensure compatability with Python 3.10 & 3.11

---------

Co-authored-by: Reinier van der Leer <github@pwuts.nl>
  • Loading branch information
drikusroor and Pwuts committed Apr 18, 2023
1 parent 74aa4ad commit 24d5e1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
environment: benchmark
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.10', '3.11']

steps:
- name: Check out repository
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit 24d5e1f

Please sign in to comment.