commit:     81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 10 07:38:36 2024 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Jan 10 07:38:36 2024 +0000
URL:        https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=81e0200c

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 <AT> gentoo.org>

 lddtree.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

Reply via email to