commit:     78f51dda9071e0445ae823c90f8f2d6b92a45b71
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 04:10:00 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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

Reply via email to