holoviz / param

Param: Make your Python code clearer and more reliable by declaring Parameters
https://param.holoviz.org
BSD 3-Clause "New" or "Revised" License
412 stars 69 forks source link

Set `creationflags` on Windows only #886

Closed maximlt closed 8 months ago

maximlt commented 8 months ago

subprocess.CREATE_NO_WINDOW is a Windows constant so it fails on other platforms: https://docs.python.org/3/library/subprocess.html#windows-constants.

Also adding a simple test that would have caught that.