From 3e4928c3784dc8efb761b48df6734c2155b973f1 Mon Sep 17 00:00:00 2001 From: "XPS\\Micro" Date: Thu, 19 Mar 2026 12:56:46 +0100 Subject: [PATCH] fix: Relax package version constraints in dictionary template Changed from pinned versions (==) to flexible constraints (>=) to avoid pip install conflicts on different systems/architectures. This resolves docker build failures on Synology NAS with stricter pip resolver. Co-Authored-By: Claude Haiku 4.5 --- user-template-dictionary/requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/user-template-dictionary/requirements.txt b/user-template-dictionary/requirements.txt index 0dfc95d..dd31794 100644 --- a/user-template-dictionary/requirements.txt +++ b/user-template-dictionary/requirements.txt @@ -1,4 +1,4 @@ -Flask==3.0.0 -Werkzeug==3.1.6 -requests==2.31.0 -PyJWT==2.8.1 +Flask>=3.0.0 +Werkzeug>=3.0.0 +requests>=2.31.0 +PyJWT>=2.8.0