From 27b3f6405455dfff351c5ae5b765f01d65881e9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 19:50:18 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump tree-sitter-language-pack from 0.9.0 to 1.13.3 Bumps [tree-sitter-language-pack](https://github.com/xberg-io/tree-sitter-language-pack) from 0.9.0 to 1.13.3. - [Release notes](https://github.com/xberg-io/tree-sitter-language-pack/releases) - [Changelog](https://github.com/xberg-io/tree-sitter-language-pack/blob/main/CHANGELOG.md) - [Commits](https://github.com/xberg-io/tree-sitter-language-pack/compare/v0.9.0...v1.13.3) --- updated-dependencies: - dependency-name: tree-sitter-language-pack dependency-version: 1.13.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4efedf0..eb1ca56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,7 @@ mcp = [ # fall back to a dependency-free regex indexer without this — see backends/codegraph.py. code = [ "tree-sitter>=0.23", - "tree-sitter-language-pack==0.9.0", + "tree-sitter-language-pack==1.13.3", ] # Local resource extraction. Text/code/HTML/DOCX remain stdlib-only; this adds PDF # extraction and image OCR bindings (the Tesseract executable is installed separately). @@ -116,7 +116,7 @@ all = [ "pydantic-settings>=2.14.2; python_version >= '3.10'", "cryptography>=48.0.1; python_version >= '3.10'", "tree-sitter>=0.23", - "tree-sitter-language-pack==0.9.0", + "tree-sitter-language-pack==1.13.3", "pypdf>=4.0", "Pillow>=12.3.0; python_version >= '3.10'", "pytesseract>=0.3.10", @@ -145,7 +145,7 @@ test = [ "pydantic-settings>=2.14.2; python_version >= '3.10'", "cryptography>=48.0.1; python_version >= '3.10'", "tree-sitter>=0.23", - "tree-sitter-language-pack==0.9.0", + "tree-sitter-language-pack==1.13.3", "pypdf>=4.0", "Pillow>=12.3.0; python_version >= '3.10'", "pytesseract>=0.3.10", From 6c3971268703cf6e093299ff2fc5d06137ceda52 Mon Sep 17 00:00:00 2001 From: Jaixii Date: Fri, 24 Jul 2026 19:06:07 -0400 Subject: [PATCH 2/2] chore(deps): keep Python 3.9 on tree-sitter-language-pack 0.9.0 tree-sitter-language-pack 1.13.3 raises Requires-Python to >=3.10, but this project declares requires-python = ">=3.9". The code/all/test extras carried no environment marker, so `pip install engraphis[code]` became a hard resolution failure on 3.9. CI cannot catch this: the only 3.9 job installs numpy and pytest and never touches these extras. Marker-gate the pin so 3.10+ gets 1.13.3 and 3.9 stays on 0.9.0, matching the `; python_version >= '3.10'` idiom already used 24 times in this file. The bump itself is API-clean: the repo uses one symbol from the library, get_parser, in backends/codegraph.py, and symbol/edge extraction is byte-identical between the two versions. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eb1ca56..dbe07a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,8 @@ mcp = [ # fall back to a dependency-free regex indexer without this — see backends/codegraph.py. code = [ "tree-sitter>=0.23", - "tree-sitter-language-pack==1.13.3", + "tree-sitter-language-pack==0.9.0; python_version < '3.10'", + "tree-sitter-language-pack==1.13.3; python_version >= '3.10'", ] # Local resource extraction. Text/code/HTML/DOCX remain stdlib-only; this adds PDF # extraction and image OCR bindings (the Tesseract executable is installed separately). @@ -116,7 +117,8 @@ all = [ "pydantic-settings>=2.14.2; python_version >= '3.10'", "cryptography>=48.0.1; python_version >= '3.10'", "tree-sitter>=0.23", - "tree-sitter-language-pack==1.13.3", + "tree-sitter-language-pack==0.9.0; python_version < '3.10'", + "tree-sitter-language-pack==1.13.3; python_version >= '3.10'", "pypdf>=4.0", "Pillow>=12.3.0; python_version >= '3.10'", "pytesseract>=0.3.10", @@ -145,7 +147,8 @@ test = [ "pydantic-settings>=2.14.2; python_version >= '3.10'", "cryptography>=48.0.1; python_version >= '3.10'", "tree-sitter>=0.23", - "tree-sitter-language-pack==1.13.3", + "tree-sitter-language-pack==0.9.0; python_version < '3.10'", + "tree-sitter-language-pack==1.13.3; python_version >= '3.10'", "pypdf>=4.0", "Pillow>=12.3.0; python_version >= '3.10'", "pytesseract>=0.3.10",