diff --git a/ipydeps/ipydeps.py b/ipydeps/ipydeps.py index dbb265f..b432404 100644 --- a/ipydeps/ipydeps.py +++ b/ipydeps/ipydeps.py @@ -203,6 +203,7 @@ def process_pip_freeze_output(pkgs) -> list: pkgs = str(pkgs, encoding='utf8').split('\n') pkgs = [p for p in pkgs if len(p) > 0 and '==' in p] pkgs = [get_freeze_package_name(p) for p in pkgs] + pkgs = normalize_package_names(pkgs) return pkgs def pip_freeze_packages(): diff --git a/pyproject.toml b/pyproject.toml index 70ad6f4..1c2d35c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ipydeps" -version = "2024.33.0" +version = "2025.34.0" description = "A pip interface wrapper for installing packages from within Jupyter notebooks." authors = ["Bill Allen "] license = "MIT"