Skip to content

Commit ba2ebda

Browse files
committed
Add Python 3.13 support to all CI workflows
- Added Python 3.13 to CI test matrix for comprehensive testing - Updated pre-release workflow to test Python 3.13 compatibility - Enhanced release workflow with Python 3.13 validation - Ensures package works correctly across all supported Python versions
1 parent 54b1072 commit ba2ebda

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macos-latest]
20-
python-version: ["3.11", "3.12"]
20+
python-version: ["3.11", "3.12", "3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v4

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
strategy:
8484
matrix:
8585
os: [ubuntu-latest, macos-latest]
86-
python-version: ["3.11", "3.12"]
86+
python-version: ["3.11", "3.12", "3.13"]
8787

8888
steps:
8989
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
strategy:
111111
matrix:
112112
os: [ubuntu-latest, windows-latest, macos-latest]
113-
python-version: ["3.11", "3.12"]
113+
python-version: ["3.11", "3.12", "3.13"]
114114

115115
steps:
116116
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)