From 651f09ea96eda4c65a4ad0f719354f1ac31a9544 Mon Sep 17 00:00:00 2001 From: Panoramic Date: Mon, 10 Jun 2024 21:56:03 +0300 Subject: [PATCH] Version check is already done by Poetry --- vetting_bot/__init__.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/vetting_bot/__init__.py b/vetting_bot/__init__.py index b2df4de..f102a9c 100644 --- a/vetting_bot/__init__.py +++ b/vetting_bot/__init__.py @@ -1,8 +1 @@ -import sys - -# Check that we're not running on an unsupported Python version. -if sys.version_info < (3, 5): - print("my_project_name requires Python 3.5 or above.") - sys.exit(1) - __version__ = "0.0.1"