Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: repoman/, /
Date: Sun, 01 Mar 2020 18:44:16
Message-Id: 1583088106.d4d1c3110a5bcea44e3c62e8c86d7a999325a61e.zmedico@gentoo
1 commit: d4d1c3110a5bcea44e3c62e8c86d7a999325a61e
2 Author: Manuel RĂ¼ger <manuel <AT> rueg <DOT> eu>
3 AuthorDate: Sun Mar 1 12:44:56 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 18:41:46 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=d4d1c311
7
8 Add python3.9 support
9
10 Closes: https://github.com/gentoo/portage/pull/515
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 .travis.yml | 3 ++-
14 repoman/runtests | 8 ++++----
15 runtests | 8 ++++----
16 tox.ini | 4 ++--
17 4 files changed, 12 insertions(+), 11 deletions(-)
18
19 diff --git a/.travis.yml b/.travis.yml
20 index 5123141ac..9269d4034 100644
21 --- a/.travis.yml
22 +++ b/.travis.yml
23 @@ -3,7 +3,8 @@ python:
24 - 2.7
25 - 3.6
26 - 3.7
27 - - 3.8-dev
28 + - 3.8
29 + - 3.9-dev
30 - pypy3
31
32 # command to install dependencies
33
34 diff --git a/repoman/runtests b/repoman/runtests
35 index 1ef52f482..bbda4526f 100755
36 --- a/repoman/runtests
37 +++ b/repoman/runtests
38 @@ -24,14 +24,14 @@ import tempfile
39 # These are the versions we fully support and require to pass tests.
40 PYTHON_SUPPORTED_VERSIONS = [
41 '2.7',
42 - '3.5',
43 '3.6',
44 - '3.7'
45 + '3.7',
46 + '3.8'
47 ]
48 # The rest are just "nice to have".
49 PYTHON_NICE_VERSIONS = [
50 - 'pypy',
51 - '3.8'
52 + 'pypy3',
53 + '3.9'
54 ]
55
56 EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
57
58 diff --git a/runtests b/runtests
59 index 50d7b8251..11c317dff 100755
60 --- a/runtests
61 +++ b/runtests
62 @@ -24,14 +24,14 @@ import tempfile
63 # These are the versions we fully support and require to pass tests.
64 PYTHON_SUPPORTED_VERSIONS = [
65 '2.7',
66 - '3.5',
67 '3.6',
68 - '3.7'
69 + '3.7',
70 + '3.8'
71 ]
72 # The rest are just "nice to have".
73 PYTHON_NICE_VERSIONS = [
74 - 'pypy',
75 - '3.8'
76 + 'pypy3',
77 + '3.9'
78 ]
79
80 EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
81
82 diff --git a/tox.ini b/tox.ini
83 index 5ba192d2e..79b5b45cb 100644
84 --- a/tox.ini
85 +++ b/tox.ini
86 @@ -1,12 +1,12 @@
87 [tox]
88 -envlist = py27,py36,py37,py38,pypy3
89 +envlist = py27,py36,py37,py38,py39,pypy3
90 skipsdist = True
91
92 [testenv]
93 deps =
94 pygost
95 pyyaml
96 - py27,py36,py37,py38,pypy3: lxml!=4.2.0
97 + py27,py36,py37,py38,py39,pypy3: lxml!=4.2.0
98 py27: pyblake2
99 py27: pysha3
100 setenv =