Skip to content

Commit 71f7cba

Browse files
feat: support python 3.13 (#319)
Co-authored-by: Mike Fiedler <[email protected]>
1 parent 1d0497c commit 71f7cba

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
- "3.10"
1414
- "3.11"
1515
- "3.12"
16+
- "3.13"
1617
steps:
1718
- name: Check out repository
1819
uses: actions/checkout@v4

Diff for: .gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tasks:
77
# Upgrade pyenv itself
88
pyenv update
99
10-
export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12"
10+
export PY_VERSIONS="3.9 3.10 3.11 3.12 3.13"
1111
1212
# Install all supported Python versions
1313
for py in $PY_VERSIONS;

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Programming Language :: Python :: Implementation :: PyPy",
3334
"Typing :: Typed"

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39, 310, 311, 312}
3+
py{39, 310, 311, 312, 313}
44
pypy{39, 310}
55
pep8
66
packaging

0 commit comments

Comments
 (0)