summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2017-07-08 10:42:33 -0700
committerGitHub <noreply@github.com>2017-07-08 10:42:33 -0700
commit371261e3a0ae832d6d9aa2f34c20d82a5c10106d (patch)
tree3fa3592e8193cd575997b9e2e1400c9eb21a2559
parent833c84dce6ed3a6d06851ae47bf3cced5b77a031 (diff)
parent687d0e80f377c252451a4067acbcdc2e1db88a00 (diff)
downloadsimplejson-371261e3a0ae832d6d9aa2f34c20d82a5c10106d.tar.gz
Merge pull request #179 from taleinat/patch-1
setup.py: fix condition for build_ext exception types
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index fd304f1..aaad55b 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ Programming Language :: Python :: Implementation :: PyPy
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