Skip to content

Commit 5cd3649

Browse files
authored
chore: update for Python 3.13 (#76)
1 parent 4659be8 commit 5cd3649

File tree

6 files changed

+923
-664
lines changed

6 files changed

+923
-664
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
- "3.9"
4040
- "3.10"
4141
- "3.11"
42+
- "3.12"
43+
- "3.13"
4244
os:
4345
- ubuntu-latest
4446
runs-on: ${{ matrix.os }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repos:
3737
rev: v3.19.1
3838
hooks:
3939
- id: pyupgrade
40-
args: [--py37-plus]
40+
args: [--py39-plus]
4141
- repo: https://github.com/PyCQA/isort
4242
rev: 5.13.2
4343
hooks:

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# import os
1414
# import sys
1515
# sys.path.insert(0, os.path.abspath('.'))
16-
from typing import Any, List
16+
from typing import Any
1717

1818
# -- Project information -----------------------------------------------------
1919

@@ -40,7 +40,7 @@
4040
# List of patterns, relative to source directory, that match files and
4141
# directories to ignore when looking for source files.
4242
# This pattern also affects html_static_path and html_extra_path.
43-
exclude_patterns: List[Any] = []
43+
exclude_patterns: list[Any] = []
4444

4545

4646
# -- Options for HTML output -------------------------------------------------

0 commit comments

Comments
 (0)