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 5d1f466 commit 049fe5bCopy full SHA for 049fe5b
src/moodle_to_vikwikiquiz/main.py
@@ -18,6 +18,12 @@
18
19
20
def main() -> None:
21
+ # future: remove the conditional below when https://github.com/linkedin/shiv/issues/268 is fixed
22
+ if version_info < (3, 12):
23
+ raise SystemError(
24
+ "This app requires Python 3.12 or later. Please upgrade it from https://www.python.org/downloads/!"
25
+ )
26
+
27
args = parse_arguments()
28
configure_logging(args.verbose)
29
logging.getLogger(__name__).debug("Program started...")
0 commit comments