Skip to content

Commit

Permalink
Support python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vxgmichel committed Oct 30, 2024
1 parent a55d902 commit 5fd4c4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8"]

env:
OS: ${{ matrix.os }}
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"typing-extensions",
Expand Down Expand Up @@ -65,7 +66,7 @@ strict = true

[tool.black]
line-length = 88
target_version = ["py38", "py39", "py310", "py311", "py312"]
target_version = ["py38", "py39", "py310", "py311", "py312", "py313"]

[tool.coverage.report]
exclude_also = ["if TYPE_CHECKING:", "assert False"]
Expand Down

0 comments on commit 5fd4c4a

Please sign in to comment.