From 8ededf6408d6c94176024ea04792f3b54e098c50 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 8 Dec 2025 22:00:24 -0500 Subject: [PATCH] Add missing pymumble dependencies to requirements.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add protobuf (required for google.protobuf in mumble_pb2.py) - Add pycryptodome (required for Crypto in crypto.py) - These were lost when pymumble was integrated into the project 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b3c30f9..501edf7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,6 @@ requests packaging pyradios opuslib==3.0.1 -numpy \ No newline at end of file +numpy +protobuf +pycryptodome \ No newline at end of file