# HG changeset patch # User Matt Harbison # Date 1728019785 14400 # Node ID 737423ae03c2b3abc789c4b795c3f7574f8a4a27 # Parent 93a533fa04ec5e873275c072935d3d2f1c73bad6 run-tests: bump the minimum python to 3.8 Presumably this was an oversight when hg was updated to 3.8. diff -r 93a533fa04ec -r 737423ae03c2 tests/run-tests.py --- 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`