Skip to content

Commit

Permalink
lddtree: raise min version to Python 3.8
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
vapier committed Jan 10, 2024
1 parent b71d01d commit 81e0200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lddtree.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
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
Expand Down

0 comments on commit 81e0200

Please sign in to comment.