Skip to content

Commit e1cae1c

Browse files
authored
Cover and communicate Python 3.13 support (#204)
1 parent 3d29a3c commit e1cae1c

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

Diff for: .github/workflows/pre-commit-detect-outdated.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24-
- name: Set up Python 3.12
24+
- name: Set up Python 3.13
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.12
27+
python-version: 3.13
2828

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

Diff for: .github/workflows/pre-commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-python@v5
2222
with:
23-
python-version: 3.12
23+
python-version: 3.13
2424
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1

Diff for: .github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
max-parallel: 4
2020
matrix:
21-
python-version: [3.9, "3.10", 3.11, 3.12]
21+
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
2222

2323
steps:
2424
- uses: actions/checkout@v4

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4344
"Programming Language :: Python :: 3 :: Only",
4445
"Topic :: Software Development :: Build Tools",
4546
"Topic :: System :: Installation/Setup",

Diff for: tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py{39,310,311,312}, lint, restlint
2+
envlist = py{39,310,311,312,313}, lint, restlint
33

44
[gh-actions]
55
python =
66
3.9: py39
77
3.10: py310
88
3.11: py311
9-
3.12: py312, lint, restlint
9+
3.12: py312
10+
3.13: py313, lint, restlint
1011

1112
[testenv]
1213
usedevelop = True

0 commit comments

Comments
 (0)