104 lines
3.7 KiB
Python
Raw Normal View History

2024-03-19 09:26:26 -05:00
# Copyright (c) Sebastian Raschka under Apache License 2.0 (see LICENSE.txt).
# Source for "Build a Large Language Model From Scratch"
# - https://www.manning.com/books/build-a-large-language-model-from-scratch
# Code: https://github.com/rasbt/LLMs-from-scratch
2023-07-23 13:18:13 -05:00
from importlib.metadata import PackageNotFoundError, import_module, version as get_version
2024-06-18 19:20:45 -05:00
from os.path import dirname, exists, join, realpath
2023-07-23 13:18:13 -05:00
from packaging.version import parse as version_parse
from packaging.requirements import Requirement
from packaging.specifiers import SpecifierSet
2023-07-23 13:18:13 -05:00
import platform
import sys
if version_parse(platform.python_version()) < version_parse("3.9"):
print("[FAIL] We recommend Python 3.9 or newer but found version %s" % sys.version)
2023-07-23 13:18:13 -05:00
else:
print("[OK] Your Python version is %s" % platform.python_version())
2023-07-23 13:18:13 -05:00
def get_packages(pkgs):
"""
Returns a dictionary mapping package names (in lowercase) to their installed version.
"""
result = {}
2023-07-23 13:18:13 -05:00
for p in pkgs:
try:
# Try to import the package
imported = import_module(p)
2023-07-23 13:18:13 -05:00
try:
version = getattr(imported, "__version__", None)
if version is None:
version = get_version(p)
result[p.lower()] = version
except PackageNotFoundError:
result[p.lower()] = "0.0"
2023-07-23 13:18:13 -05:00
except ImportError:
result[p.lower()] = "0.0"
return result
2023-07-23 13:18:13 -05:00
def get_requirements_dict():
"""
Parses requirements.txt and returns a dictionary mapping package names (lowercase)
to a specifier string (e.g. ">=2.18.0,<3.0"). It uses packaging.requirements.Requirement
to properly handle environment markers.
"""
2023-07-23 13:18:13 -05:00
PROJECT_ROOT = dirname(realpath(__file__))
2024-03-18 08:00:49 -05:00
PROJECT_ROOT_UP_TWO = dirname(dirname(PROJECT_ROOT))
REQUIREMENTS_FILE = join(PROJECT_ROOT_UP_TWO, "requirements.txt")
2024-06-18 19:20:45 -05:00
if not exists(REQUIREMENTS_FILE):
REQUIREMENTS_FILE = join(PROJECT_ROOT, "requirements.txt")
reqs = {}
2023-07-23 13:18:13 -05:00
with open(REQUIREMENTS_FILE) as f:
for line in f:
# Remove inline comments and trailing whitespace.
# This splits on the first '#' and takes the part before it.
line = line.split("#", 1)[0].strip()
if not line:
2024-03-18 08:00:49 -05:00
continue
try:
req = Requirement(line)
except Exception as e:
print(f"Skipping line due to parsing error: {line} ({e})")
continue
# Evaluate the marker if present.
if req.marker is not None and not req.marker.evaluate():
continue
# Store the package name and its version specifier.
spec = str(req.specifier) if req.specifier else ">=0"
reqs[req.name.lower()] = spec
return reqs
2023-07-23 13:18:13 -05:00
def check_packages(reqs):
"""
Checks the installed versions of packages against the requirements.
"""
installed = get_packages(reqs.keys())
for pkg_name, spec_str in reqs.items():
spec_set = SpecifierSet(spec_str)
actual_ver = installed.get(pkg_name, "0.0")
if actual_ver == "N/A":
2023-07-23 13:18:13 -05:00
continue
actual_ver_parsed = version_parse(actual_ver)
# If the installed version is a pre-release, allow pre-releases in the specifier.
if actual_ver_parsed.is_prerelease:
spec_set.prereleases = True
if actual_ver_parsed not in spec_set:
print(f"[FAIL] {pkg_name} {actual_ver_parsed}, please install a version matching {spec_set}")
2023-07-23 13:18:13 -05:00
else:
print(f"[OK] {pkg_name} {actual_ver_parsed}")
2023-07-23 13:18:13 -05:00
def main():
reqs = get_requirements_dict()
check_packages(reqs)
if __name__ == "__main__":
main()