Skip to content

Commit

Permalink
(fix) fix AttributeError MSVCCompiler when building Windows binary
Browse files Browse the repository at this point in the history
  • Loading branch information
CrimsonJacket committed Apr 2, 2021
1 parent 6ccb628 commit 7295036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def main():
"bin/hummingbot.py",
"bin/hummingbot_quickstart.py"
],
cmdclass={'build_ext': BuildExt},
cmdclass={'build_ext': BuildExt} if os.name != "nt" else {},
)


Expand Down

0 comments on commit 7295036

Please sign in to comment.