From 17aec56952a723495c6ecf23e71012e1b151107a Mon Sep 17 00:00:00 2001 From: sbcrumb Date: Sat, 4 Oct 2025 11:08:58 -0400 Subject: [PATCH 1/2] Add missing aiohttp dependency to requirements.txt - Add aiohttp==3.8.6 to fix ModuleNotFoundError in runtime_validator - Container now shows config: manage_nfo=True (confirms NFO creation enabled) - Version bump to 2.0.5 --- VERSION | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 2165f8f..e010258 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.4 +2.0.5 diff --git a/requirements.txt b/requirements.txt index 043f2eb..5d8a6f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +5,5 @@ psycopg2-binary==2.9.7 requests==2.31.0 python-multipart==0.0.6 aiofiles==23.2.1 +aiohttp==3.8.6 python-dotenv==1.0.0 -- 2.39.5 From acf741e6bb4394ee8e3d30d7de81617d9dfddf88 Mon Sep 17 00:00:00 2001 From: sbcrumb Date: Sat, 4 Oct 2025 11:12:23 -0400 Subject: [PATCH 2/2] Add missing psutil dependency to complete requirements - Add psutil==5.9.6 for monitoring metrics functionality - Container confirmed: manage_nfo=True (NFO creation enabled) - All external dependencies now included in requirements.txt - Version bump to 2.0.6 for complete dependency resolution --- VERSION | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index e010258..157e54f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.5 +2.0.6 diff --git a/requirements.txt b/requirements.txt index 5d8a6f5..bc54ab1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ requests==2.31.0 python-multipart==0.0.6 aiofiles==23.2.1 aiohttp==3.8.6 +psutil==5.9.6 python-dotenv==1.0.0 -- 2.39.5