Skip to content

Commit 34761ce

Browse files
committed
Fixed Python version check.
1 parent 60d29e0 commit 34761ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sys import version_info
88

99
py_version = version_info[:2]
10-
if not (2, 7) <= py_version < (3, 0):
10+
if not (2, 3) <= py_version < (3, 0):
1111
raise ImportError('Python %d.%d is not supported by DBUtils.' % py_version)
1212

1313
import warnings

0 commit comments

Comments
 (0)