From bf86a2627f0150217bb6496c200e785e5340d01f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dean=20Qui=C3=B1anola?= Date: Thu, 20 Nov 2025 22:20:56 -0800 Subject: [PATCH] refactor: Update runpod dependency to >= versioning Changes: - Update runpod from ==1.7.12 to >=1.8.0 - Aligns with new versioning strategy across all worker repos The >= operator allows any version greater than or equal to 1.8.0, replacing the == (exact version) constraint. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c27d355..f117d58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -runpod==1.7.12 +runpod>=1.8.0