Skip to content

Commit

Permalink
Merge pull request #179 from taleinat/patch-1
Browse files Browse the repository at this point in the history
setup.py: fix condition for build_ext exception types
  • Loading branch information
etrepum committed Jul 8, 2017
2 parents 833c84d + 687d0e8 commit 371261e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines()))

if sys.platform == 'win32' and sys.version_info > (2, 6):
if sys.platform == 'win32' and sys.version_info < (2, 7):
# 2.6's distutils.msvc9compiler can raise an IOError when failing to
# find the compiler
# It can also raise ValueError http://bugs.python.org/issue7511
Expand Down

0 comments on commit 371261e

Please sign in to comment.