From 222c2fcffbeb158b72a8c9d0ee709674b027632b Mon Sep 17 00:00:00 2001 From: Maksim Totmin Date: Tue, 2 Jun 2026 09:05:25 +0700 Subject: [PATCH] fix: add iOpenPod dependency as pip installable from GitHub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit iopenpod is not published on PyPI — it lives at https://github.com/TheRealSavi/iOpenPod.git. The old requirement 'iopenpod>=1.0.53' would always fail with 'Package not found'. Using the PEP 508 @ git+ URL ensures pip fetches and installs iOpenPod directly from the upstream repo. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0aaae1c..7afb0a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ pillow>=9.5.0 requests>=2.28.2 PyQt6>=6.5.0 numpy>=1.24.0 -iopenpod>=1.0.53 +iopenpod @ git+https://github.com/TheRealSavi/iOpenPod.git