Skip to content

Commit 06ab39e

Browse files
robhudsonwillkg
authored andcommitted
Fix #260: Add support for Python 3.13
1 parent 9b2db32 commit 06ab39e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1919

2020
name: Python ${{ matrix.python-version}}
2121
steps:

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.10",
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2223
"Programming Language :: Python :: Implementation :: CPython",
2324
"Topic :: Software Development :: Libraries :: Python Modules",
2425
]
@@ -111,6 +112,7 @@ envlist =
111112
py310
112113
py311
113114
py312
115+
py313
114116
uv_python_preference = only-managed
115117
116118
[gh-actions]
@@ -120,6 +122,7 @@ python =
120122
3.10: py310
121123
3.11: py311
122124
3.12: py312
125+
3.13: py313
123126
124127
[testenv]
125128
extras = dev,ini,sphinx,yaml

0 commit comments

Comments
 (0)