Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vdf/
Date: Wed, 01 Jul 2020 08:17:12
Message-Id: 1593591419.19646d9a7d08255cf2f3733b8097475f8b37534a.marecki@gentoo
1 commit: 19646d9a7d08255cf2f3733b8097475f8b37534a
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 08:12:51 2020 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 08:16:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19646d9a
7
8 dev-python/vdf-3.3: support python3_9
9
10 Turns out using or importing the ABCs from 'collections' instead of from
11 'collections.abc' will only stop working in python 3.10 rather than 3.9,
12 therefore in the end vdf tests all pass on 3.9 without any patching.
13
14 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
15
16 dev-python/vdf/vdf-3.3.ebuild | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/dev-python/vdf/vdf-3.3.ebuild b/dev-python/vdf/vdf-3.3.ebuild
20 index 2c3eaf316de..57390281171 100644
21 --- a/dev-python/vdf/vdf-3.3.ebuild
22 +++ b/dev-python/vdf/vdf-3.3.ebuild
23 @@ -3,7 +3,7 @@
24
25 EAPI=7
26
27 -PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
28 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
29
30 inherit distutils-r1