Skip to content

Commit 1be5edf

Browse files
committed
Add support for Python 3.14
1 parent 32b2d35 commit 1be5edf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pre-commit-detect-outdated.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323

24-
- name: Set up Python 3.13
24+
- name: Set up Python 3.14
2525
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2626
with:
27-
python-version: 3.13
27+
python-version: 3.14
2828

2929
- name: Install pre-commit
3030
run: |-

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ jobs:
2222
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2424
with:
25-
python-version: 3.13
25+
python-version: 3.14
2626
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run the test suite
2020
strategy:
2121
matrix:
22-
python-version: ["3.10", 3.13] # no particular need for in-between versions
22+
python-version: ["3.10", 3.14] # no particular need for in-between versions
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

0 commit comments

Comments
 (0)