We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9e585 commit 3778bdfCopy full SHA for 3778bdf
Fortran/gfortran/utils/update-test-config.py
@@ -21,6 +21,11 @@
21
import re
22
import shutil
23
import yaml
24
+import sys
25
+
26
+if (sys.version_info.major, sys.version_info.minor) < (3, 10):
27
+ print("Error: Python version 3.10 or later is required.")
28
+ sys.exit(1)
29
30
# Class representing a single test. The fields of the test should be those that
31
# are eventually serialized into the test configuration. The configuration will
0 commit comments