From ece1a72a8a016aebf0621297aba0738b6cd718a5 Mon Sep 17 00:00:00 2001 From: Tyler Porter Date: Mon, 2 Oct 2023 09:46:33 -0400 Subject: [PATCH 1/3] Update version.py --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 96825d08..31937c36 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ SCRIPT_NAME = "MLB LED Scoreboard" -SCRIPT_VERSION = "6.5.0" +SCRIPT_VERSION = "6.5.1" if __name__ == "__main__": From 0623451ad4be226a9e7892134452d954b3343d21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 03:18:40 +0000 Subject: [PATCH 2/3] Bump pillow from 9.3.0 to 10.0.1 Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.3.0 to 10.0.1. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/9.3.0...10.0.1) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7d58f280..fdf2d5d2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ feedparser==6.0.10 MLB_StatsAPI>=1.6.1 -Pillow==9.3.0 +Pillow==10.0.1 pyowm==3.3.0 RGBMatrixEmulator>=0.8.4 tzlocal==4.2 From 574113056362c20890fef58424d086e7f7713fbf Mon Sep 17 00:00:00 2001 From: pawptart Date: Tue, 3 Oct 2023 23:29:19 -0400 Subject: [PATCH 3/3] Remove CI for Python 3.7 --- .github/workflows/run_unittest_on_pr_open.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unittest_on_pr_open.yml b/.github/workflows/run_unittest_on_pr_open.yml index c50fde17..dca7b1f1 100644 --- a/.github/workflows/run_unittest_on_pr_open.yml +++ b/.github/workflows/run_unittest_on_pr_open.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}