Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1f9c15

Browse files
committed
Be more explicit about supported Python 3 versions
1 parent 2786a2f commit f1f9c15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
extras_require = {
3232
# Older versions of pip don't support operators other than ==/!=
3333
":python_version=='2.6' or python_version=='2.7'": REQUIRES_PY2,
34-
":python_version!='2.6' and python_version!='2.7'": REQUIRES_PY3,
34+
(":python_version=='3.3' or python_version=='3.4' or"
35+
" python_version=='3.5' or python_version=='3.6'"): REQUIRES_PY3,
3536
}
3637

3738
setup(

0 commit comments

Comments
 (0)