Skip to content

Commit 6b833d2

Browse files
committed
fix CI building and expand matrix
1 parent 9effd9b commit 6b833d2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.6", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.11",
3636
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3738
"Topic :: Software Development :: Libraries :: Python Modules",
3839
],
3940
)

treelib/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def __get_iter(
275275
filter_: Callable[[Node], bool],
276276
key: Optional[Callable[[Node], Node]],
277277
reverse: bool,
278-
dt: tuple[str, str, str],
278+
dt,
279279
is_last: list,
280280
sorting: bool,
281281
):

0 commit comments

Comments
 (0)