From a80708513bfd00b6e53908d4d3597f361f844d82 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sun, 9 Feb 2025 13:12:57 +1030 Subject: [PATCH 1/2] Drop support for python 3.7 in CI --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From c4c654dfb5b09c8da7cb526d9bcf7f1217ad6d81 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Sun, 9 Feb 2025 02:56:33 +0000 Subject: [PATCH 2/2] Run --- androidtv/exceptions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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):