From 0570665153e34dc6b49ba8d2a1b31ac53ff06669 Mon Sep 17 00:00:00 2001 From: Alex Ruddick Date: Thu, 20 Jul 2023 15:02:53 -0500 Subject: [PATCH] Drop version warning --- setup.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/setup.py b/setup.py index b60e734..474a4dc 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,6 @@ """Python driver for AutomationDirect Productivity Series PLCs.""" -from sys import version_info - from setuptools import setup -if version_info < (3, 7): - raise ImportError("This module requires Python >=3.7. Use 0.6.0 for Python3.6") - with open('README.md') as in_file: long_description = in_file.read()