From 7643185fa2b69c92e0a3c375092edfcf449a9706 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 9 Nov 2022 23:14:38 +0800 Subject: [PATCH] Add missing importlib_resources --- gns3server/controller/appliance_manager.py | 1 - requirements.txt | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/appliance_manager.py b/gns3server/controller/appliance_manager.py index 2ca563c0..68554942 100644 --- a/gns3server/controller/appliance_manager.py +++ b/gns3server/controller/appliance_manager.py @@ -125,7 +125,6 @@ class ApplianceManager: except OSError as e: log.error(f"Could not install built-in appliance files to {dst_path}: {e}") - def _find_appliances_from_image_checksum(self, image_checksum: str) -> List[Tuple[Appliance, str]]: """ Find appliances that matches an image checksum. diff --git a/requirements.txt b/requirements.txt index c10dc9d4..96029030 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,4 +17,5 @@ python-jose==3.3.0 email-validator==1.2.1 watchfiles==0.16.1 zstandard==0.18.0 +importlib_resources>=1.3 setuptools>=60.8.1