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 7943E158090 for ; Thu, 19 May 2022 04:11:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3E28E088B; Thu, 19 May 2022 04:11:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 7A9F7E088B for ; Thu, 19 May 2022 04:11:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 52719341665 for ; Thu, 19 May 2022 04:11:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C2223B5 for ; Thu, 19 May 2022 04:11:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652933454.78f51dda9071e0445ae823c90f8f2d6b92a45b71.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: DEVELOPING README.md runtests tox.ini X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 78f51dda9071e0445ae823c90f8f2d6b92a45b71 X-VCS-Branch: master Date: Thu, 19 May 2022 04:11:06 +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: 9dc0a323-dc19-4d8a-8d36-2a9cb06f3a7b X-Archives-Hash: 9c0c7a635e156605836230bf5f469a42 commit: 78f51dda9071e0445ae823c90f8f2d6b92a45b71 Author: Sam James gentoo org> AuthorDate: Thu May 19 04:10:00 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 19 04:10:54 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=78f51dda */*: Python 3.6 is EOL; raise min supported to Python 3.7 EOL since 2021-12-23 and indeed isn't in gentoo.git anymore either since a few months ago. Signed-off-by: Sam James gentoo.org> DEVELOPING | 2 +- README.md | 2 +- runtests | 2 +- tox.ini | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/DEVELOPING b/DEVELOPING index 0299b0364..5f04d3b64 100644 --- a/DEVELOPING +++ b/DEVELOPING @@ -9,7 +9,7 @@ bad habits that exist in the current codebase. Python Version -------------- -Python 3.6 is the minimum supported version. +Python 3.7 is the minimum supported version. Dependencies ------------ diff --git a/README.md b/README.md index 9e929197a..3e7ba81aa 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ git config blame.ignoreRevsFile .gitignorerevs Dependencies ============ -Python and Bash should be the only hard dependencies. Python 3.6 is the +Python and Bash should be the only hard dependencies. Python 3.7 is the minimum supported version. Native Extensions diff --git a/runtests b/runtests index 732e083a0..b4e6fc2af 100755 --- a/runtests +++ b/runtests @@ -20,7 +20,7 @@ import tempfile # These are the versions we fully support and require to pass tests. -PYTHON_SUPPORTED_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"] +PYTHON_SUPPORTED_VERSIONS = ["3.7", "3.8", "3.9", "3.10"] # The rest are just "nice to have". PYTHON_NICE_VERSIONS = ["pypy3", "3.11"] diff --git a/tox.ini b/tox.ini index 3c8bc69f6..6bff3ee7c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,9 @@ [tox] -envlist = py{36,37,38,39,310}-pylint,pypy3 +envlist = py{37,38,39,310}-pylint,pypy3 skipsdist = True [gh-actions] python = - 3.6: py36-pylint 3.7: py37-pylint 3.8: py38-pylint 3.9: py39-pylint