From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFB08158451 for ; Wed, 10 Jan 2024 07:59:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3650AE2A5B; Wed, 10 Jan 2024 07:59:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18908E2A5B for ; Wed, 10 Jan 2024 07:59:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D18C343228 for ; Wed, 10 Jan 2024 07:58:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB041141 for ; Wed, 10 Jan 2024 07:58:57 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1704872316.81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: lddtree.py X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5 X-VCS-Branch: master Date: Wed, 10 Jan 2024 07:58:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 00551849-bbd9-445a-8839-9b9157df944d X-Archives-Hash: 0dbefa27cc3b7ec7c9583aa23f24f03b commit: 81e0200c6068d8c00c2d1f569f8b7b0ea7c1b0d5 Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 10 07:38:36 2024 +0000 Commit: Mike Frysinger gentoo 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 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