Skip to content

Commit a3e82b3

Browse files
committed
Add support for Python 3.14
1 parent c323af0 commit a3e82b3

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/style-lint-and-test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ jobs:
1313
name: Style, lint, test
1414
runs-on: ubuntu-latest
1515
strategy:
16+
fail-fast: false
1617
matrix:
17-
python-version: ["3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1819

1920
steps:
2021

@@ -25,6 +26,7 @@ jobs:
2526
uses: actions/setup-python@v5
2627
with:
2728
python-version: ${{ matrix.python-version }}
29+
allow-prereleases: true
2830

2931
- name: Install uv
3032
uses: astral-sh/setup-uv@v6

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ classifiers = [
4545
"Programming Language :: Python :: 3.11",
4646
"Programming Language :: Python :: 3.12",
4747
"Programming Language :: Python :: 3.13",
48+
"Programming Language :: Python :: 3.14",
4849
"Topic :: Software Development :: Documentation",
4950
"Topic :: Terminals",
5051
"Topic :: Text Processing :: Markup :: Markdown",

0 commit comments

Comments
 (0)