From 49baa9bfbfa04d48a7b8507df04a70d580821b50 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 3 Oct 2025 19:08:32 +0200 Subject: [PATCH] Add netifaces to install_requires The netifaces package is imported in ceti/whaletag.py:23 but was not declared as a dependency in setup.py, causing ModuleNotFoundError when running 'ceti whaletag' commands. This fix adds netifaces>=0.11.0 to the install_requires list to ensure it's automatically installed with the ceti package. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 2fb26d8..961960d 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ packages=find_packages(), install_requires=[ 'findssh~=1.5.0', + 'netifaces>=0.11.0', 'paramiko>=2.10.1', 'boto3~=1.17.78', 'tqdm~=4.60.0',