aboutsummaryrefslogtreecommitdiffstats
path: root/coin_build_instructions.py
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2018-05-31 15:12:43 +0300
committerSimo Fält <simo.falt@qt.io>2018-05-31 20:41:44 +0000
commit6383820c4b32395fe6dfead79f38ff93b7a0e686 (patch)
treeb899880e07b9452a68c8212947f65991bc902720 /coin_build_instructions.py
parent5dc72386fb6dd90d8eb75ea04ef9d318ecf62bd2 (diff)
Enable msvc 2017 wheels instead of msvc 2015
Change-Id: I4c81b9131e37b8ed91fa02756ed19df25fd2dd8e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'coin_build_instructions.py')
-rw-r--r--coin_build_instructions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index ad4331845..4608c890c 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -69,7 +69,7 @@ def call_setup(python_ver):
cmd = [env_python, "setup.py"]
# With 5.11 CI will create two sets of release binaries, one with msvc 2015 and one with msvc 2017
# we shouldn't release the 2015 version.
- if CI_RELEASE_CONF and CI_COMPILER not in ["MSVC2017"]:
+ if CI_RELEASE_CONF and CI_COMPILER not in ["MSVC2015"]:
cmd += ["bdist_wheel", "--standalone"]
else:
cmd += ["build"]