commit: 41094c785115e45cc456028f1b9e914160e0d392
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 26 08:12:01 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 26 08:21:18 2023 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=41094c78
runtests: update supported Python versions
We're about to get rid of this, but..
Signed-off-by: Sam James <sam <AT> gentoo.org>
runtests | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/runtests b/runtests
index 2b44079b8..1701190b4 100755
--- a/runtests
+++ b/runtests
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2010-2020 Gentoo Authors
+# Copyright 2010-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
#
# Note: We don't want to import portage modules directly because we do things
@@ -20,9 +20,9 @@ import tempfile
# These are the versions we fully support and require to pass tests.
-PYTHON_SUPPORTED_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+PYTHON_SUPPORTED_VERSIONS = ["3.9", "3.10", "3.11"]
# The rest are just "nice to have".
-PYTHON_NICE_VERSIONS = ["pypy3", "3.11"]
+PYTHON_NICE_VERSIONS = ["pypy3", "3.12"]
EPREFIX = os.environ.get("PORTAGE_OVERRIDE_EPREFIX", "/")