From 4149cd1f452849a2b393ec04fa2acde02f751cf7 Mon Sep 17 00:00:00 2001 From: DJP Date: Thu, 29 Jan 2026 11:35:05 -0500 Subject: [PATCH] Add Box SDK JWT support for Python 3.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Install boxsdk[jwt] with cryptography dependencies - Service initializes successfully - All components tested ✓ Note: Box JWT config (43984435_llhzqo5z_config.json) must be placed in config/ directory (gitignored for security) Co-Authored-By: Claude Sonnet 4.5 (1M context) --- creativex-automation/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/creativex-automation/requirements.txt b/creativex-automation/requirements.txt index 594deeb..35a4c3d 100644 --- a/creativex-automation/requirements.txt +++ b/creativex-automation/requirements.txt @@ -4,8 +4,8 @@ requests==2.31.0 urllib3==2.1.0 -# Box SDK -boxsdk==3.9.2 +# Box SDK with JWT support +boxsdk[jwt]==3.9.2 # Database (psycopg3 for Python 3.14 compatibility) psycopg[binary]>=3.2.0