Skip to content

Commit bb0b3fc

Browse files
authored
Merge pull request #88 from rettinghaus/actions
feat: add support for Python 3.14
2 parents 03c8145 + e2bf40d commit bb0b3fc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ["3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2222
defaults:
2323
run:
2424
working-directory: .
2525

2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
- name: Set up Python ${{ matrix.python-version }}
3030
uses: actions/setup-python@v6
@@ -93,7 +93,7 @@ jobs:
9393
pytest -m benchmark --benchmark-json=./output.json
9494
9595
- name: Download previous benchmark data
96-
uses: actions/cache@v4
96+
uses: actions/cache@v5
9797
with:
9898
path: ./cache
9999
key: ${{ runner.os }}-benchmark

.github/workflows/coverage_readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
update-coverage-on-readme:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
persist-credentials: false
2323
fetch-depth: 0

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.11",
3838
"Programming Language :: Python :: 3.12",
3939
"Programming Language :: Python :: 3.13",
40+
"Programming Language :: Python :: 3.14",
4041
]
4142

4243
[project.optional-dependencies]

0 commit comments

Comments
 (0)