Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ permissions: {}

env:
REPORTS_DIR: CI_reports
PYTHON_VERSION_DEFAULT: "3.11"
PYTHON_VERSION_DEFAULT: "3.14"
POETRY_VERSION: "1.8.1"

jobs:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
matrix:
include:
- # latest python
python-version: '3.12'
python-version: '3.14'
toxenv-factor: 'current'
- # lowest supported python
python-version: '3.8'
Expand Down Expand Up @@ -137,13 +137,29 @@ jobs:
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with py38
- macos-latest
python-version:
- "3.12" # highest supported
- "3.14" # highest supported
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8" # lowest supported
- "3.8" # lowest supported -- handled in include
exclude:
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.9"
- os: macos-latest
python-version: "3.8"
include:
- os: macos-13
python-version: "3.10"
- os: macos-13
python-version: "3.9"
- os: macos-13
python-version: "3.8"
steps:
- name: Checkout
# see https://github.com/actions/checkout
Expand Down
Loading