diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5989973c..b99aa55c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index ec78d3e2..4ce0706f 100644 --- a/README.rst +++ b/README.rst @@ -52,4 +52,4 @@ A collection of useful intents and commands can be found `here `_ by happyleavesaoc and the `androidtv component for Home Assistant `_ by a1ex4, and it depends on the Python packages `adb-shell `_ (which is based on `python-adb `_) and `pure-python-adb `_. +This is based on `python-firetv `_ by happyleavesaoc and the `androidtv component for Home Assistant `_ by a1ex4, and it depends on the Python packages `adb-shell `_ (which is based on `python-adb `_) and a forked, more maintained version of `pure-python-adb `_. diff --git a/androidtv/exceptions.py b/androidtv/exceptions.py index 10a3aff6..326e5db4 100644 --- a/androidtv/exceptions.py +++ b/androidtv/exceptions.py @@ -1,6 +1,4 @@ -"""Exceptions for use throughout the code. - -""" +"""Exceptions for use throughout the code.""" class LockNotAcquiredException(Exception): diff --git a/setup.py b/setup.py index 969696d0..cbef07d4 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", # This will 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",