File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ linux-version-finder --help
2121
2222## Linux Install requirements
2323
24- python3 -mpip install --upgrade --user typer
24+ pip3 install -r requirements.txt
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import sys
1111from typing import List
1212
1313import typer
14+ from tqdm import tqdm
1415
1516
1617def linux_version_finder_single (single_script_path : str , commit : str ) -> list [str ]:
@@ -73,7 +74,7 @@ def find_commits_versions(
7374 This is the first half of the tool and the part the require almost all the cpu/mem"""
7475 minor_versions = get_minor_versions ()
7576 versions_count = collections .defaultdict (list )
76- for commit in commits :
77+ for commit in tqdm ( commits ) :
7778 minor_version = ""
7879 versions = linux_version_finder_single (single_script_path , commit )
7980 for version in versions :
Original file line number Diff line number Diff line change 1+ tqdm
2+ typer
You can’t perform that action at this time.
0 commit comments