aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <manuel@rueg.eu>2020-03-01 13:44:56 +0100
committerZac Medico <zmedico@gentoo.org>2020-03-01 10:41:46 -0800
commitd4d1c3110a5bcea44e3c62e8c86d7a999325a61e (patch)
treee522db03d992c8d094c9a375ea1194581133fdec /repoman/runtests
parent_BinpkgFetcherProcess: fix async_lock event loop recursion (bug 711178) (diff)
downloadportage-d4d1c3110a5bcea44e3c62e8c86d7a999325a61e.tar.gz
portage-d4d1c3110a5bcea44e3c62e8c86d7a999325a61e.tar.bz2
portage-d4d1c3110a5bcea44e3c62e8c86d7a999325a61e.zip
Add python3.9 support
Closes: https://github.com/gentoo/portage/pull/515 Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'repoman/runtests')
-rwxr-xr-xrepoman/runtests8
1 files changed, 4 insertions, 4 deletions
diff --git a/repoman/runtests b/repoman/runtests
index 1ef52f482..bbda4526f 100755
--- a/repoman/runtests
+++ b/repoman/runtests
@@ -24,14 +24,14 @@ import tempfile
# These are the versions we fully support and require to pass tests.
PYTHON_SUPPORTED_VERSIONS = [
'2.7',
- '3.5',
'3.6',
- '3.7'
+ '3.7',
+ '3.8'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
- 'pypy',
- '3.8'
+ 'pypy3',
+ '3.9'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')