aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2024-01-10 02:38:36 -0500
committerMike Frysinger <vapier@gentoo.org>2024-01-10 02:38:36 -0500
commit81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5 (patch)
tree4934afe9e94b9ad28a84e742845d1daf6a031b8b
parentgithub: add python checkers (diff)
downloadpax-utils-81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5.tar.gz
pax-utils-81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5.tar.bz2
pax-utils-81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5.zip
lddtree: raise min version to Python 3.8
We aren't using Python 3.6 anywhere anymore that I care about, so raise the min version to 3.8. Tools are dropping support for it too which makes it difficult to reasonably support. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rwxr-xr-xlddtree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lddtree.py b/lddtree.py
index 8ccd855..b1fef16 100755
--- a/lddtree.py
+++ b/lddtree.py
@@ -51,7 +51,7 @@ import shutil
import sys
from typing import Any, Dict, Iterable, List, Optional, Tuple, Union, cast
-assert sys.version_info >= (3, 6), f"Python 3.6+ required, but found {sys.version}"
+assert sys.version_info >= (3, 8), f"Python 3.8+ required, but found {sys.version}"
# Disable import errors for all 3rd party modules.
# pylint: disable=import-error