Skip to content

Commit 8e328b4

Browse files
committed
[setup] strictly require python >= 3.6
1 parent a8312b4 commit 8e328b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
__author__ = 'Christian Kellner, Achilleas Koutsou'
88

9+
if sys.version_info.major < 3 and sys.version_info.minor < 6:
10+
sys.exit('Sorry, nixio requires python >= 3.6!')
911

1012
with open('README.rst') as f:
1113
description_text = f.read()

0 commit comments

Comments
 (0)