From c5c064004464ae495edbfdea899d3dc21629d995 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sun, 9 Feb 2025 02:47:34 +0000 Subject: [PATCH] Update requirements to point at a fork --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 969696d0..24e27164 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,10 @@ author="Jeff Irion", author_email="jefflirion@users.noreply.github.com", packages=["androidtv", "androidtv.adb_manager", "androidtv.basetv", "androidtv.androidtv", "androidtv.firetv"], - install_requires=["adb-shell>=0.4.0", "pure-python-adb>=0.3.0.dev0"], + install_requires=[ + "adb-shell>=0.4.0", + "pure-python-adb @ git+https://github.com/CloCkWeRX/pure-python-adb@v0.3.0.pre" # TODO: Change to https://github.com/spm5065/pure-python-adb when a tag is available + ], extras_require={"async": ["aiofiles>=0.4.0", "async_timeout>=3.0.0"], "usb": ["adb-shell[usb]>=0.4.0"]}, classifiers=[ "License :: OSI Approved :: MIT License",