From 2ef70f6094ef5a74a4ce4b1a9c6d9bff44385e35 Mon Sep 17 00:00:00 2001 From: Frank Martinez Date: Tue, 25 Nov 2025 07:34:03 -0500 Subject: [PATCH 1/2] Build: Update pylint minimum python version to 3.10 --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index b0c2a1e7c6..4ba8a461b0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -82,7 +82,7 @@ persistent=yes # Minimum Python version to use for version dependent checks. Will default to # the version used to run pylint. -py-version=3.8 +py-version=3.10 # Discover python modules and packages in the file system subtree. recursive=no From 863d77562d763d86b82fa3a6d7637b13e3bff109 Mon Sep 17 00:00:00 2001 From: Frank Martinez Date: Tue, 25 Nov 2025 10:41:29 -0500 Subject: [PATCH 2/2] Build: Remove deprecated pylint option --- .pylintrc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.pylintrc b/.pylintrc index 4ba8a461b0..3675d95d7f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -87,10 +87,6 @@ py-version=3.10 # Discover python modules and packages in the file system subtree. recursive=no -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no