Skip to content

Commit 0a87f3b

Browse files
committed
Update the version check
To assume that future python versions will be compatible with this syntax. Suggested by: ThiefMaster
1 parent 9eaf4c4 commit 0a87f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
install_reqs += ['argparse']
2323
tests_reqs += ['unittest2']
2424

25-
if sys.version_info[0] == 3:
25+
if sys.version_info[0] > 2:
2626
readme = open('README.rst', encoding='utf-8').read()
2727
else:
2828
readme = open('README.rst').read()

0 commit comments

Comments
 (0)