Skip to content

Commit 219bc5a

Browse files
committed
Add classifier for Python 3.14
1 parent 361e822 commit 219bc5a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test-python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: uv sync --locked --all-extras --dev
2828
- name: Run Ruff
29-
run: uvx ruff check . --output-format=github
29+
run: uv run ruff check . --output-format=github
3030
- name: Run type checks
3131
run: uv run mypy pystiebeleltron --show-error-codes --pretty
3232
- name: Run tests

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
]
1920
requires-python = ">=3.10,<4"
2021
dependencies = [

0 commit comments

Comments
 (0)