diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-10 02:38:36 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-10 02:38:36 -0500 |
commit | 81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5 (patch) | |
tree | 4934afe9e94b9ad28a84e742845d1daf6a031b8b | |
parent | github: add python checkers (diff) | |
download | pax-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-x | lddtree.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |