aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-09-26 18:28:14 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2017-10-02 16:33:03 -0700
commit7f25686dcfc602a4f72ae9e07cde001171197fa3 (patch)
tree9935b97fa4d0c19df282efe5c14ebc08065c18df
parent511c9c7f3b0a1bc18af320d51d571362e748769a (diff)
Another try for windows python build
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1f047a4e73..f27d3d7be5 100644
--- a/setup.py
+++ b/setup.py
@@ -100,7 +100,7 @@ EXTRA_ENV_COMPILE_ARGS = os.environ.get('GRPC_PYTHON_CFLAGS', None)
EXTRA_ENV_LINK_ARGS = os.environ.get('GRPC_PYTHON_LDFLAGS', None)
if EXTRA_ENV_COMPILE_ARGS is None:
EXTRA_ENV_COMPILE_ARGS = ''
- if 'win32' in sys.platform and sys.version_info < (3, 5):
+ if 'win32' in sys.platform: #and sys.version_info < (3, 5):
EXTRA_ENV_COMPILE_ARGS += ' -std=c++11'
# We use define flags here and don't directly add to DEFINE_MACROS below to
# ensure that the expert user/builder has a way of turning it off (via the