run-tests: bump the minimum python to 3.8
Presumably this was an oversight when hg was updated to 3.8.
--- 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`