Skip to content

Commit 200b9b4

Browse files
authored
support python 3.13, state that 3.14 is not supported (#33)
1 parent 036a76a commit 200b9b4

File tree

3 files changed

+4
-116
lines changed

3 files changed

+4
-116
lines changed

.github/workflows/lint_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: [ "3.9", "3.10", "3.11", "3.12"]
19+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13"]
2020
fail-fast: false
2121

2222
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"tree-sitter-bash",
1313
]
1414
readme = "README.md"
15-
requires-python = ">= 3.9"
15+
requires-python = ">= 3.9, < 3.14"
1616
license = "MIT"
1717
keywords = ["coverage", "plugin", "shell", "bash", "sh"]
1818
classifiers = [
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
"Typing :: Typed",
2526
]
2627

0 commit comments

Comments
 (0)