From 024a24076d969491c3fa72871af1d1af167194f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 04:02:08 +0000 Subject: [PATCH 1/2] chore: update pylint requirement from ~=3.3.8 to ~=4.0.2 Updates the requirements on [pylint](https://github.com/pylint-dev/pylint) to permit the latest version. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.3.8...v4.0.2) --- updated-dependencies: - dependency-name: pylint dependency-version: 4.0.2 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 17df396c..01dee0a7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ jinja2~=3.1.6 -pylint~=3.3.8 +pylint~=4.0.2 black~=25.9.0 mkdocs~=1.6.1 From bdbb74187f2cde6dcd38cec50f030edda0498301 Mon Sep 17 00:00:00 2001 From: Jared Hendrickson Date: Sun, 2 Nov 2025 09:21:23 -0700 Subject: [PATCH 2/2] ci: deprecate python 3.9 lint checks Removed Python 3.9 from the CI matrix. --- .github/workflows/quality.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index d38250f2..ded40437 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -44,7 +44,7 @@ jobs: needs: ["check_black"] strategy: matrix: - PYTHON_VERSION: ["3.9", "3.10", "3.11"] + PYTHON_VERSION: ["3.10", "3.11"] steps: - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.PYTHON_VERSION }}