Skip to content

Commit

Permalink
Merge pull request #2570 from Point72/tkp/msvc
Browse files Browse the repository at this point in the history
Fix compatibility with other MSVC versions by explicitly converting to string
  • Loading branch information
texodus authored Mar 26, 2024
2 parents 35abc1e + cf54d0b commit 055d5b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/perspective/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def build_extension_cmake(self, ext):
"14.1": "Visual Studio 15 2017",
"14.2": "Visual Studio 16 2019",
"14.3": "Visual Studio 17 2022",
}.get(dm.get_build_version(), "Visual Studio 15 2017")
}.get(str(dm.get_build_version()), "Visual Studio 15 2017")

cmake_args.extend(
[
Expand Down

0 comments on commit 055d5b3

Please sign in to comment.