From f1c6a0b3b2c0184c5486433ec727f6bc5c5b8e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9D=E3=82=AD?= Date: Sat, 7 Jun 2025 07:24:28 -0700 Subject: [PATCH] build: remove boto3 dependency from requirements The boto3 dependency is no longer needed in the project, so it has been removed from both requirements.txt and setup.py to simplify dependencies and reduce package size. --- requirements.txt | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index d086f1f..cee3237 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1 @@ -boto3==1.38.32 httpx==0.28.1 diff --git a/setup.py b/setup.py index cf1a736..257fd41 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ with open("README.md", "r", encoding="utf-8") as fh: # with open("songbox/requirements.txt", "r", encoding="utf-8") as fh: # requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] -requirements = ["httpx==0.28.1", "boto3==1.38.32"] +requirements = ["httpx==0.28.1"] setup( name="songbox",