Skip to content

Commit 3e0c712

Browse files
authored
Merge pull request #78 from hartwork/python-3-10-to-3-14
Support Python 3.10 to 3.14
2 parents 27f5998 + 1be5edf commit 3e0c712

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.9, 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

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
indent-width = 4
22
line-length = 99
3-
target-version = "py39"
3+
target-version = "py310"
44

55
[lint]
66
select = [

0 commit comments

Comments
 (0)