Skip to content

Commit ea079ff

Browse files
committed
support Python 3.14
update CI
1 parent 3da6da5 commit ea079ff

4 files changed

Lines changed: 240 additions & 209 deletions

File tree

.github/workflows/test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ on:
44
push:
55
branches:
66
- main
7-
-
7+
8+
89
jobs:
910
validate:
1011
runs-on: ubuntu-latest
1112
steps:
1213
- uses: actions/checkout@v4
1314
- uses: actions/setup-python@v5
1415
with:
15-
python-version: "3.12"
16+
python-version: "3.13"
1617
- name: Install Pre-Commit
1718
run: python -m pip install pre-commit && pre-commit install
1819
- name: Load cached Pre-Commit Dependencies
@@ -30,11 +31,11 @@ jobs:
3031
fail-fast: true
3132
matrix:
3233
python-version:
33-
- "3.9"
3434
- "3.10"
3535
- "3.11"
3636
- "3.12"
3737
- "3.13"
38+
- "3.14"
3839
pytest-version:
3940
- "7"
4041
- "8"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default_language_version:
22
python: "3.12"
33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.8.4
5+
rev: v0.14.5
66
hooks:
77
- id: ruff
88
args: ["--fix"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{ name = "Janek Nouvertné", email = "provinzkraut@posteo.de" },
77
]
88
readme = "README.md"
9-
requires-python = ">=3.9"
9+
requires-python = ">=3.10"
1010
classifiers = [
1111
"Framework :: Pytest",
1212
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)