Skip to content

Commit

Permalink
Remove redundant version check
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Mar 4, 2018
1 parent fe66606 commit 2804685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -30,8 +30,8 @@
is_pypy = hasattr(sys, 'pypy_version_info')

ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
if sys.platform == 'win32' and sys.version_info > (2, 6):
# 2.6's distutils.msvc9compiler can raise an IOError when failing to
if sys.platform == 'win32':
# distutils.msvc9compiler can raise an IOError when failing to
# find the compiler
ext_errors += (IOError,)

Expand Down

0 comments on commit 2804685

Please sign in to comment.