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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A1EB1382C5 for ; Sun, 28 Feb 2021 11:48:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77FD6E086D; Sun, 28 Feb 2021 11:48:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62016E086D for ; Sun, 28 Feb 2021 11:48:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7AF95341011 for ; Sun, 28 Feb 2021 11:48:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03E012A9 for ; Sun, 28 Feb 2021 11:48:35 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1614512794.ee76155d7e2c86aa5a0c2a53e31d8a9cadfb22f6.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: ee76155d7e2c86aa5a0c2a53e31d8a9cadfb22f6 X-VCS-Branch: master Date: Sun, 28 Feb 2021 11:48:35 +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: e1c3c3ef-a805-412c-b5d3-b514abf8f65a X-Archives-Hash: 404a0ceee1983eeddaaf012b236ef3d1 commit: ee76155d7e2c86aa5a0c2a53e31d8a9cadfb22f6 Author: Zac Medico gentoo org> AuthorDate: Sun Feb 28 10:26:29 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Feb 28 11:46:34 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ee76155d setup.py: python_requires = ">=3.6" Signed-off-by: Zac Medico gentoo.org> setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7d6fb6609..709b64ee3 100755 --- a/setup.py +++ b/setup.py @@ -729,5 +729,7 @@ setup( 'Operating System :: POSIX', 'Programming Language :: Python :: 3', 'Topic :: System :: Installation/Setup' - ] + ], + + python_requires = ">=3.6", )