From fdc4b90b3ca54fbbede9431311e3120c96256837 Mon Sep 17 00:00:00 2001 From: killiandesse Date: Mon, 24 Nov 2025 16:12:17 +0100 Subject: [PATCH] Adjust linters for dropping Python 3.9 --- .flake8 | 2 +- .mypy.ini | 2 +- .pylintrc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.flake8 b/.flake8 index 081c7ebef..7a5969507 100644 --- a/.flake8 +++ b/.flake8 @@ -59,7 +59,7 @@ ignore = PT004, PT011, PT012 -min-version = 3.9.0 +min-version = 3.10.0 max-complexity = 12 per-file-ignores = qutebrowser/api/hook.py : N801 diff --git a/.mypy.ini b/.mypy.ini index e315f0b13..6fc1fea60 100644 --- a/.mypy.ini +++ b/.mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.9 +python_version = 3.10 ### --strict warn_unused_configs = True diff --git a/.pylintrc b/.pylintrc index 1cb4e0f1b..b5794d1e1 100644 --- a/.pylintrc +++ b/.pylintrc @@ -16,7 +16,7 @@ load-plugins=qute_pylint.config, pylint.extensions.dunder persistent=n -py-version=3.9 +py-version=3.10 [MESSAGES CONTROL] enable=all