Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Thu, 19 May 2022 04:11:11
Message-Id: 1652933454.78f51dda9071e0445ae823c90f8f2d6b92a45b71.sam@gentoo
1 commit: 78f51dda9071e0445ae823c90f8f2d6b92a45b71
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 04:10:00 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 04:10:54 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=78f51dda
7
8 */*: Python 3.6 is EOL; raise min supported to Python 3.7
9
10 EOL since 2021-12-23 and indeed isn't in gentoo.git anymore
11 either since a few months ago.
12
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 DEVELOPING | 2 +-
16 README.md | 2 +-
17 runtests | 2 +-
18 tox.ini | 3 +--
19 4 files changed, 4 insertions(+), 5 deletions(-)
20
21 diff --git a/DEVELOPING b/DEVELOPING
22 index 0299b0364..5f04d3b64 100644
23 --- a/DEVELOPING
24 +++ b/DEVELOPING
25 @@ -9,7 +9,7 @@ bad habits that exist in the current codebase.
26 Python Version
27 --------------
28
29 -Python 3.6 is the minimum supported version.
30 +Python 3.7 is the minimum supported version.
31
32 Dependencies
33 ------------
34
35 diff --git a/README.md b/README.md
36 index 9e929197a..3e7ba81aa 100644
37 --- a/README.md
38 +++ b/README.md
39 @@ -41,7 +41,7 @@ git config blame.ignoreRevsFile .gitignorerevs
40 Dependencies
41 ============
42
43 -Python and Bash should be the only hard dependencies. Python 3.6 is the
44 +Python and Bash should be the only hard dependencies. Python 3.7 is the
45 minimum supported version.
46
47 Native Extensions
48
49 diff --git a/runtests b/runtests
50 index 732e083a0..b4e6fc2af 100755
51 --- a/runtests
52 +++ b/runtests
53 @@ -20,7 +20,7 @@ import tempfile
54
55
56 # These are the versions we fully support and require to pass tests.
57 -PYTHON_SUPPORTED_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
58 +PYTHON_SUPPORTED_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
59 # The rest are just "nice to have".
60 PYTHON_NICE_VERSIONS = ["pypy3", "3.11"]
61
62
63 diff --git a/tox.ini b/tox.ini
64 index 3c8bc69f6..6bff3ee7c 100644
65 --- a/tox.ini
66 +++ b/tox.ini
67 @@ -1,10 +1,9 @@
68 [tox]
69 -envlist = py{36,37,38,39,310}-pylint,pypy3
70 +envlist = py{37,38,39,310}-pylint,pypy3
71 skipsdist = True
72
73 [gh-actions]
74 python =
75 - 3.6: py36-pylint
76 3.7: py37-pylint
77 3.8: py38-pylint
78 3.9: py39-pylint