From a52590f2d76004349c76fee39198a163a78ae055 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 20:42:25 +0000 Subject: [PATCH] fix: resolve CI/CD issues - dependency and linting fixes --- setup.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index c58833f..156b1aa 100644 --- a/setup.py +++ b/setup.py @@ -9,16 +9,16 @@ setup( package_dir={"": "src"}, python_requires=">=3.8", install_requires=[ - "click>=8.1.7", - "rich>=13.7.0", - "gitpython>=3.1.40", - "dataclasses-json>=0.6.4", - "pyyaml>=6.0.1", - "jinja2>=3.1.3", + "click>=8.0.0", + "rich>=13.0.0", + "gitpython>=3.1.0", + "dataclasses-json>=0.6.0", + "PyYAML>=6.0", + "jinja2>=3.1.0", ], entry_points={ "console_scripts": [ - "git-insights=src.cli:main", + "git-insights=git_insights.cli:main", ], }, include_package_data=True,