From f4a383ae0540f37dfa478a4b01e53a3da12d2f82 Mon Sep 17 00:00:00 2001 From: Yatin Jamwal Date: Mon, 16 Feb 2026 00:20:54 +0530 Subject: [PATCH] Update Python environment for Python 3.13 compatibility Updated venv setup and dependencies (bottle, requests) for Python 3.13. Signed-off-by: Palak Goyal Co-authored-by: Yatin Jamwal --- requirements.txt | 4 ++-- venv.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 venv.sh diff --git a/requirements.txt b/requirements.txt index fad5e63..f78f0d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ wheel==0.30.0 -bottle==0.12.18 +bottle>=0.13 netifaces==0.10.9 pytz==2020.1 -requests==2.24.0 +requests diff --git a/venv.sh b/venv.sh old mode 100644 new mode 100755 index b42be9e..c0441b1 --- a/venv.sh +++ b/venv.sh @@ -9,5 +9,5 @@ fi $PYTHON -m venv venv . venv/bin/activate -pip install --upgrade pip -pip install -r requirements.txt +pip install --upgrade pip setuptools wheel +pip install --no-build-isolation -r requirements.txt