Skip to content

Commit e8986af

Browse files
committed
Downgrade networkx to 3.4.2 so its python 3.10 compatible
Signed-off-by: Rahul Krishna <[email protected]>
1 parent 7c727d6 commit e8986af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codeanalyzer/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from codeanalyzer.core import Codeanalyzer
77
from codeanalyzer.utils import _set_log_level, logger
8-
from codeanalyzer.config import OutputFormat, AnalysisOptions, CLIOptions
8+
from codeanalyzer.config import OutputFormat
99

1010

1111
def main(

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ readme = "README.md"
66
authors = [
77
{ name = "Rahul Krishna", email = "[email protected]" }
88
]
9-
requires-python = "==3.10"
9+
requires-python = "==3.10.*"
1010

1111
dependencies = [
1212
"jedi>=0.19.2",
1313
"loguru>=0.7.3",
1414
"msgpack>=1.1.1",
15-
"networkx>=3.5",
15+
"networkx>=3.4.2",
1616
"pandas>=2.3.1",
1717
"pydantic>=2.11.7",
1818
"requests>=2.32.4",

0 commit comments

Comments
 (0)