From eaebfbb4887d9410bc89e75bd142d5213f44296b Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 21 Apr 2020 16:13:03 +0530 Subject: remove bloat --- pyvercheck.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyvercheck.py (limited to 'pyvercheck.py') diff --git a/pyvercheck.py b/pyvercheck.py new file mode 100644 index 0000000..98e620b --- /dev/null +++ b/pyvercheck.py @@ -0,0 +1,7 @@ +# This file is placed in the public domain. + +import sys + +if sys.version_info.major < 3 or sys.version_info.minor < 7: + sys.stderr.write("error: python>=3.7 must be available as the python3 executable\n") + sys.exit(1) -- cgit v1.2.3