From 8b12ceca1d929a4ceed1c1cb78ed7e2a95115d8b Mon Sep 17 00:00:00 2001 From: tkashinsky-r7 <141039700+tkashinsky-r7@users.noreply.github.com> Date: Sun, 19 Oct 2025 17:30:14 +0300 Subject: [PATCH 1/2] Pin zipp version Pin zipp version to fix vulnerability alerted by Snyk --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index d8ff42e..5e51a50 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ astroid==2.15.8 +zipp==3.19.1 flake8 flake8-assertive flake8-comprehensions From dbe9b113a34229668d8280fa072d043dc8676358 Mon Sep 17 00:00:00 2001 From: tkashinsky-r7 <141039700+tkashinsky-r7@users.noreply.github.com> Date: Sun, 19 Oct 2025 17:35:25 +0300 Subject: [PATCH 2/2] Update build.yml to remove old Python versions Removed Python versions 3.7, 3.8, and 3.9 from the build matrix. --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f1676d..f5ab7ee 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,9 +29,6 @@ jobs: fail-fast: false matrix: python-version: - - '3.7' - - '3.8' - - '3.9' - '3.10' - '3.11' - '3.12'