From 21d3c29bb9ed0d288c1f4957c5104560b18f7e00 Mon Sep 17 00:00:00 2001 From: Kesara Rathnayake Date: Tue, 15 Oct 2024 06:51:55 +1300 Subject: [PATCH] chore: Remove Python 2.7 check (#60) --- svgcheck/run.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/svgcheck/run.py b/svgcheck/run.py index a553ee0..0dd358a 100644 --- a/svgcheck/run.py +++ b/svgcheck/run.py @@ -158,11 +158,4 @@ def main(): if __name__ == '__main__': - major, minor = sys.version_info[:2] - if major == 2 and minor < 7: - print("") - print("The svgcheck script requires python of 2.7 or higher.") - print("Can't proceed, quitting.") - exit() - main()