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: Thu, 31 Dec 2020 01:03:13
Message-Id: 1609376565.57c13cb8630a7ee78d714a4cc15bceb3d0fd2838.zmedico@gentoo
1 commit: 57c13cb8630a7ee78d714a4cc15bceb3d0fd2838
2 Author: Manuel Rüger <manuel <AT> rueg <DOT> eu>
3 AuthorDate: Wed Dec 30 14:40:54 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 01:02:45 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=57c13cb8
7
8 Test with Python 3.10
9
10 Closes: https://github.com/gentoo/portage/pull/649
11 Signed-off-by: Manuel Rüger <manuel <AT> rueg.eu>
12 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
13
14 .travis.yml | 5 +++--
15 repoman/runtests | 5 +++--
16 runtests | 5 +++--
17 tox.ini | 4 ++--
18 4 files changed, 11 insertions(+), 8 deletions(-)
19
20 diff --git a/.travis.yml b/.travis.yml
21 index d2935fdab..3a40617fb 100644
22 --- a/.travis.yml
23 +++ b/.travis.yml
24 @@ -1,10 +1,11 @@
25 -dist: bionic
26 +dist: focal
27 language: python
28 python:
29 - 3.6
30 - 3.7
31 - 3.8
32 - - 3.9-dev
33 + - 3.9
34 + - 3.10-dev
35 - pypy3
36
37 # command to install dependencies
38
39 diff --git a/repoman/runtests b/repoman/runtests
40 index 3edaaf0a8..5137b5e6e 100755
41 --- a/repoman/runtests
42 +++ b/repoman/runtests
43 @@ -24,12 +24,13 @@ PYTHON_SUPPORTED_VERSIONS = [
44 '2.7',
45 '3.6',
46 '3.7',
47 - '3.8'
48 + '3.8',
49 + '3.9'
50 ]
51 # The rest are just "nice to have".
52 PYTHON_NICE_VERSIONS = [
53 'pypy3',
54 - '3.9'
55 + '3.10'
56 ]
57
58 EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
59
60 diff --git a/runtests b/runtests
61 index 685a7d9c7..c062f46cb 100755
62 --- a/runtests
63 +++ b/runtests
64 @@ -23,12 +23,13 @@ import tempfile
65 PYTHON_SUPPORTED_VERSIONS = [
66 '3.6',
67 '3.7',
68 - '3.8'
69 + '3.8',
70 + '3.9'
71 ]
72 # The rest are just "nice to have".
73 PYTHON_NICE_VERSIONS = [
74 'pypy3',
75 - '3.9'
76 + '3.10'
77 ]
78
79 EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')
80
81 diff --git a/tox.ini b/tox.ini
82 index d6c8cf3b3..8aabbd2ce 100644
83 --- a/tox.ini
84 +++ b/tox.ini
85 @@ -1,5 +1,5 @@
86 [tox]
87 -envlist = py36,py37,py38,py39,pypy3
88 +envlist = py36,py37,py38,py39,py310,pypy3
89 skipsdist = True
90
91 [testenv]
92 @@ -7,7 +7,7 @@ deps =
93 pylint
94 pygost
95 pyyaml
96 - py36,py37,py38,py39,pypy3: lxml!=4.2.0
97 + py36,py37,py38,py39,py310,pypy3: lxml!=4.2.0
98 setenv =
99 PYTHONPATH={toxinidir}/lib
100 commands =