From 65f3ea930c37e78090862c4b77c3bc3a135b705b Mon Sep 17 00:00:00 2001 From: Ivo Steinbrecher Date: Fri, 19 Jun 2026 08:54:58 +0200 Subject: [PATCH] Allow to use cubitpy utility on windows --- src/cubitpy/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cubitpy/conf.py b/src/cubitpy/conf.py index 54e14ed..87de701 100644 --- a/src/cubitpy/conf.py +++ b/src/cubitpy/conf.py @@ -74,6 +74,8 @@ def __init__(self): self._host_platform = "linux" elif self._host_platform.startswith("darwin"): self._host_platform = "macos" + elif self._host_platform.startswith("win32"): + self._host_platform = "windows" else: raise ValueError( "Got unexpected host platform: {}".format(self._host_platform)