Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ on:

jobs:
build:
name: "🐍 Ubuntu 20.04 - Python ${{ matrix.python-version }}"
runs-on: ubuntu-20.04
name: "🐍 Ubuntu 22.04 - Python ${{ matrix.python-version }}"
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding Python 3.11, 3.12, and 3.13 to the CI matrix requires updating the pybind11 dependency version in setup.py. The current minimum version (pybind11>=2.2) does not support these newer Python versions:

  • Python 3.11 requires pybind11 2.10 or later
  • Python 3.12 requires pybind11 2.11 or later
  • Python 3.13 requires pybind11 2.12 or later

Without updating the pybind11 requirement, builds for Python 3.11+ will fail during compilation. Consider updating setup.py to require pybind11>=2.12 to support the entire version range being tested.

Suggested change
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.7', '3.8', '3.9', '3.10']

Copilot uses AI. Check for mistakes.

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -34,4 +34,4 @@ jobs:

- name: Test
run: |
python -m pytest -vs tests
python -m pytest -vs tests
Loading