Browse Source

pylint workflow tweak

The MMGen Project 6 months ago
parent
commit
ee35ab0683
2 changed files with 2 additions and 3 deletions
  1. 1 3
      .github/workflows/pylint.yaml
  2. 1 0
      pyproject.toml

+ 1 - 3
.github/workflows/pylint.yaml

@@ -18,12 +18,10 @@ jobs:
 
     strategy:
       matrix:
-        python-version: ["3.9","3.10","3.11","3.12"]
+        python-version: ["3.9", "3.11", "3.12"]
         include:
           - python-version: "3.9"
             pylint_ver: "3.1.1"
-          - python-version: "3.10"
-            pylint_ver: "3.1.1"
           - python-version: "3.11"
             pylint_ver: "3.1.1"
           - python-version: "3.12"

+ 1 - 0
pyproject.toml

@@ -41,6 +41,7 @@ disable = [
 	"use-symbolic-message-instead",
 	"use-implicit-booleaness-not-comparison-to-string",
 	"use-implicit-booleaness-not-comparison-to-zero",
+	"not-async-context-manager",
 # non-default:
 	"no-method-argument",
 	"function-redefined",