From 76965ea3359414d46c4bbb6523caa3b22f9976e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20G=C3=BClen?= Date: Tue, 17 Mar 2026 16:52:40 +0100 Subject: [PATCH] chore(deps): remove unused google>=3.0.0 dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `google>=3.0.0` dependency was introduced accidentally in commit 7b3ec4a7 (2020-11-09) when `google-api-python-client` was shortened to `google` during a package rebranding from ttvcloud to volc. The `google` PyPI package (by Mario Vilas) is a Google Search scraper — completely unrelated to `google.protobuf`. All `from google.protobuf` imports in this codebase are satisfied by the `protobuf` package, which is already listed as a separate dependency. Zero files in this repository import anything from the `google` PyPI package. Removing it also drops the unnecessary transitive dependency on `beautifulsoup4`. --- requirements.txt | 1 - setup.py | 1 - 2 files changed, 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 35d8f63..2e10acb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,6 @@ retry>=0.9.2,<1.0.0 shellescape==3.8.1 urllib3~=1.26.16 setuptools>=44.1.1 -google>=3.0.0 six>=1.0 protobuf>=3.18.3 minio~=7.1.9 diff --git a/setup.py b/setup.py index b70c9b3..06d4e26 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,6 @@ "pytz>=2020.5", "pycryptodome>=3.9.9,<4.0.0", "protobuf>=3.18.3", - "google>=3.0.0", "six>=1.0", ]