Skip to content

Commit f90dad4

Browse files
authored
feat: support python 3.14 (#16)
* add python 3.14 * update docs version * update pre-commit hooks * bump actions to v6
1 parent d0e8494 commit f90dad4

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10", "3.11", "3.12", "3.13"]
10+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
id-token: write
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Set up Python
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.x'
2727
- name: Install dependencies

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ repos:
1212
- id: check-yaml
1313

1414
- repo: https://github.com/psf/black-pre-commit-mirror
15-
rev: 25.9.0
15+
rev: 25.12.0
1616
hooks:
1717
- id: black
1818
args: [--safe, --line-length=100]
1919

2020
- repo: https://github.com/PyCQA/isort
21-
rev: 6.1.0
21+
rev: 7.0.0
2222
hooks:
2323
- id: isort
2424
args: ["--profile", "black"]
2525

2626
- repo: https://github.com/pre-commit/mirrors-mypy
27-
rev: v1.18.2
27+
rev: v1.19.1
2828
hooks:
2929
- id: mypy
3030
args: [--disable-error-code=union-attr, --disable-error-code=import]
3131

3232
- repo: https://github.com/asottile/pyupgrade
33-
rev: v3.20.0
33+
rev: v3.21.2
3434
hooks:
3535
- id: pyupgrade
3636
args: [--py310-plus]

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
version: 2
55

66
build:
7-
os: ubuntu-22.04
7+
os: ubuntu-24.04
88
tools:
9-
python: "3.12"
9+
python: "3.13"
1010

1111
sphinx:
1212
configuration: docs/conf.py

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
]
2122
dynamic = ["dependencies", "version"]
2223

0 commit comments

Comments
 (0)