mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-09-05 08:06:05 +00:00
23 lines
634 B
Python
23 lines
634 B
Python
"""Windows process sandbox status.
|
|
|
|
OpenSpace keeps Windows sandboxing explicitly unsupported until a helper can
|
|
provide file and network isolation, not just process-tree cleanup.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .types import SandboxDependencyIssue
|
|
|
|
|
|
def diagnose_windows_dependencies() -> list[SandboxDependencyIssue]:
|
|
return [
|
|
SandboxDependencyIssue(
|
|
"error",
|
|
"unsupported_windows",
|
|
"Sandboxing is not supported on native Windows yet.",
|
|
"Use macOS, Linux, or WSL2 for local process sandboxing.",
|
|
)
|
|
]
|
|
|
|
|
|
__all__ = ["diagnose_windows_dependencies"]
|