changeset 51951:737423ae03c2

run-tests: bump the minimum python to 3.8 Presumably this was an oversight when hg was updated to 3.8.
author Matt Harbison <matt_harbison@yahoo.com>
date Fri, 04 Oct 2024 01:29:45 -0400
parents 93a533fa04ec
children f4c038081561
files tests/run-tests.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/run-tests.py	Fri Oct 04 01:23:31 2024 -0400
+++ b/tests/run-tests.py	Fri Oct 04 01:29:45 2024 -0400
@@ -73,9 +73,9 @@
 import xml.dom.minidom as minidom
 
 
-if sys.version_info < (3, 5, 0):
+if sys.version_info < (3, 8, 0):
     print(
-        '%s is only supported on Python 3.5+, not %s'
+        '%s is only supported on Python 3.8+, not %s'
         % (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3]))
     )
     sys.exit(70)  # EX_SOFTWARE from `man 3 sysexit`