Skip to content

Commit

Permalink
feat: support python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxianpeng committed Oct 14, 2024
1 parent 1d0497c commit d01840b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tasks:
# Upgrade pyenv itself
pyenv update
export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12"
export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12 3.13"
# Install all supported Python versions
for py in $PY_VERSIONS;
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39, 310, 311, 312}
py{39, 310, 311, 312, 313}
pypy{39, 310}
pep8
packaging
Expand Down

0 comments on commit d01840b

Please sign in to comment.