Merge pull request #29059 from NousResearch/jq/fix-windows-creationflags-collision

fix(windows): drop duplicate creationflags kwarg in LocalEnvironment run_bash
This commit is contained in:
Jeffrey Quesnelle 2026-05-20 00:25:37 -04:00 committed by GitHub
commit 62713c8b89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -532,7 +532,6 @@ class LocalEnvironment(BaseEnvironment):
stderr=subprocess.STDOUT,
stdin=subprocess.PIPE if stdin_data is not None else subprocess.DEVNULL,
preexec_fn=None if _IS_WINDOWS else os.setsid,
creationflags=subprocess.CREATE_NO_WINDOW if _IS_WINDOWS else 0,
cwd=_popen_cwd,
**_popen_kwargs,
)