Skip to content

Commit

Permalink
Add Python 3.12 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mi-La committed Feb 13, 2024
1 parent 648b207 commit 51a7840
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-20.04", "ubuntu-22.04"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -36,9 +36,10 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools # necessary for pkg_resources on Python 3.12
python -m pip install zserio
python -m pip install astroid==2.15.0
python -m pip install pylint==2.16.3
python -m pip install astroid==3.0.3
python -m pip install pylint==3.0.3
python -m pip install mypy==0.931
- name: Check Zserio Python tutorial
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ["windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -36,9 +36,10 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools # necessary for pkg_resources on Python 3.12
python -m pip install zserio
python -m pip install astroid==2.15.0
python -m pip install pylint==2.16.3
python -m pip install astroid==3.0.3
python -m pip install pylint==3.0.3
python -m pip install mypy==0.931
shell: bash

Expand Down

0 comments on commit 51a7840

Please sign in to comment.