Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Jun 2021 07:51:17
Message-Id: 1622533684.c014e66fdda780be4057f3a180917941b758f205.mgorny@gentoo
1 commit: c014e66fdda780be4057f3a180917941b758f205
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 19:33:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 07:48:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c014e66f
7
8 python-utils-r1.eclass: Disable python3_7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/python-utils-r1.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
16 index 0082a231f0a..3dbf221eac5 100644
17 --- a/eclass/python-utils-r1.eclass
18 +++ b/eclass/python-utils-r1.eclass
19 @@ -42,7 +42,7 @@ inherit toolchain-funcs
20 # All supported Python implementations, most preferred last.
21 _PYTHON_ALL_IMPLS=(
22 pypy3
23 - python3_{7..10}
24 + python3_{8..10}
25 )
26 readonly _PYTHON_ALL_IMPLS
27
28 @@ -54,7 +54,7 @@ _PYTHON_HISTORICAL_IMPLS=(
29 jython2_7
30 pypy pypy1_{8,9} pypy2_0
31 python2_{5..7}
32 - python3_{1..6}
33 + python3_{1..7}
34 )
35 readonly _PYTHON_HISTORICAL_IMPLS