Skip to content

Commit c8a4aa9

Browse files
committed
Add support for Python 3.15
1 parent 3cbdee8 commit c8a4aa9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- '3.12'
2727
- '3.13'
2828
- '3.14'
29+
- '3.15'
2930

3031
steps:
3132
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -36,7 +37,7 @@ jobs:
3637
enable-cache: true
3738
python-version: ${{ matrix.python-version }}
3839
activate-environment: true
39-
# TODO: Do we need `allow-prereleases: true`?
40+
# allow-prereleases: true
4041

4142
- name: Install test dependencies
4243
run: uv sync --group test --frozen

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
3131
"Programming Language :: Python :: 3.14",
32+
"Programming Language :: Python :: 3.15",
3233
"Typing :: Typed",
3334
]
3435
dependencies = [
@@ -53,7 +54,7 @@ test = [
5354
]
5455

5556
[tool.pyproject-fmt]
56-
max_supported_python = "3.14"
57+
max_supported_python = "3.15"
5758

5859
[tool.pytest.ini_options]
5960
addopts = """\

0 commit comments

Comments
 (0)