Skip to content

Commit 776d5e0

Browse files
amalashkevichkozlovsky
authored andcommitted
Py35: Update setup.py
1 parent f74997b commit 776d5e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
'Programming Language :: Python :: 3',
6868
'Programming Language :: Python :: 3.3',
6969
'Programming Language :: Python :: 3.4',
70+
'Programming Language :: Python :: 3.5',
7071
'Topic :: Software Development :: Libraries',
7172
'Topic :: Database'
7273
]
@@ -91,8 +92,8 @@
9192

9293
if __name__ == "__main__":
9394
pv = sys.version_info[:2]
94-
if pv not in ((2, 6), (2, 7), (3, 3), (3, 4)):
95-
s = "Sorry, but %s %s requires Python of one of the following versions: 2.6, 2.7, 3.3 or 3.4." \
95+
if pv not in ((2, 6), (2, 7), (3, 3), (3, 4), (3, 5)):
96+
s = "Sorry, but %s %s requires Python of one of the following versions: 2.6, 2.7, 3.3, 3.4 and 3.5." \
9697
" You have version %s"
9798
print(s % (name, version, sys.version.split(' ', 1)[0]))
9899
sys.exit(1)

0 commit comments

Comments
 (0)