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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.13', '3.14']
python-version: ['3.10']
Copy link

Choose a reason for hiding this comment

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

Removing Python 3.13 and 3.14 from CI creates inconsistency with pyproject.toml (lines 30-31) which still declares support for these versions, and cibuildwheel config (lines 166-167) which still builds wheels for them. This means Python 3.11-3.14 wheels will be distributed but not tested in CI.

Either:

  1. Keep testing 3.13 and 3.14 in CI (revert this change), OR
  2. Remove them from pyproject.toml classifiers and cibuildwheel config too
Suggested change
python-version: ['3.10']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

include:
- os: macos-15
platform: macos-arm64
Expand Down Expand Up @@ -161,4 +161,4 @@ jobs:
./db-example
./core-example
./ailego-example
shell: bash
shell: bash
Loading