graphlens-python 0.1.1__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: graphlens-python
3
- Version: 0.1.1
3
+ Version: 0.2.1
4
4
  Summary: Python language adapter for graphlens
5
5
  Requires-Dist: graphlens
6
6
  Requires-Dist: tree-sitter>=0.24
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "graphlens-python"
3
- version = "0.1.1"
3
+ version = "0.2.1"
4
4
  description = "Python language adapter for graphlens"
5
5
  requires-python = ">=3.13"
6
6
  dependencies = ["graphlens", "tree-sitter>=0.24", "tree-sitter-python>=0.23"]
7
7
 
8
8
  [build-system]
9
- requires = ["uv_build>=0.9.18,<0.11.0"]
9
+ requires = ["uv_build>=0.9.18,<0.12.0"]
10
10
  build-backend = "uv_build"
11
11
 
12
12
  [tool.uv.sources]
@@ -3,9 +3,8 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  import configparser
6
- from typing import TYPE_CHECKING
7
-
8
6
  import tomllib
7
+ from typing import TYPE_CHECKING
9
8
 
10
9
  if TYPE_CHECKING:
11
10
  from pathlib import Path
@@ -5,9 +5,9 @@ from __future__ import annotations
5
5
  import configparser
6
6
  import re
7
7
  import sys
8
+ import tomllib
8
9
  from typing import TYPE_CHECKING
9
10
 
10
- import tomllib
11
11
  from graphlens.contracts import DependencyFileParser, normalize_pkg_name
12
12
 
13
13
  if TYPE_CHECKING: