Skip to content

Commit 745b38c

Browse files
committed
fix: Changes to address tree-sitter-languages dependency issues: - Restricted requires-python in pyproject.toml to <3.13. - User removed 3.13 from ci-cd.yml.
1 parent d8207a4 commit 745b38c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, windows-latest, macos-latest]
21-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2222

2323
steps:
2424
- name: Checkout code

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "knowcode"
33
version = "0.1.0"
44
description = "Efficient codebase knowledge graph builder"
55
readme = "README.md"
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.9, <3.13"
77
dependencies = [
88
"click>=8.1",
99
"networkx>=3.0",

0 commit comments

Comments
 (0)