1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From: Colin Watson <cjwatson@debian.org>
Date: Sun, 30 Nov 2025 13:01:28 +0000
Subject: Target Python 3.9 when running tests
mypy 1.17.0 dropped support for targeting Python 3.8, causing
https://bugs.debian.org/1114284.
Forwarded: https://github.com/davidfritzsche/pytest-mypy-testing/pull/57
Bug-Debian: https://bugs.debian.org/1114284
Last-Update: 2025-11-30
---
mypy.ini | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mypy.ini b/mypy.ini
index 0ddd5a5..ab879ee 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -2,7 +2,7 @@
# SPDX-License-Identifier: CC0-1.0
[mypy]
-python_version = 3.8
+python_version = 3.9
mypy_path = src
|