Skip to content

Commit 2733aad

Browse files
committed
Add Python 3.14 to the supported versions
1 parent 9db9c01 commit 2733aad

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ jobs:
4141

4242
tests:
4343
runs-on: ubuntu-latest
44+
strategy:
45+
fail-fast: false
46+
matrix:
47+
python-version:
48+
- "3.10"
49+
- "3.11"
50+
- "3.12"
51+
- "3.13"
52+
- "3.14"
4453
env:
4554
OPENAI_API_KEY: fake-for-tests
4655
steps:
@@ -50,6 +59,7 @@ jobs:
5059
uses: astral-sh/setup-uv@v5
5160
with:
5261
enable-cache: true
62+
python-version: ${{ matrix.python-version }}
5363
- name: Install dependencies
5464
run: make sync
5565
- name: Run tests with coverage

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Operating System :: OS Independent",
2829
"Topic :: Software Development :: Libraries :: Python Modules",
2930
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)