Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ipydeps/ipydeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <billallen256@gmail.com>"]
license = "MIT"
Expand Down