Skip to content

Commit

Permalink
Corrected Python version support to be explicitly Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 26, 2016
1 parent 7b9a91d commit a335811
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#!/usr/bin/env python3


import sys
if sys.version_info[:3] < (3, 4):
raise SystemExit("You need Python 3.4+")

if sys.version_info[:2] != (3, 4):
raise SystemExit("VOC requires Python 3.4+")

import io
import re
Expand Down Expand Up @@ -45,6 +43,7 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
Expand Down

0 comments on commit a335811

Please sign in to comment.