We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a825b7b commit 831f466Copy full SHA for 831f466
1 file changed
src/findpython/python.py
@@ -18,7 +18,7 @@
18
@lru_cache(maxsize=1024)
19
def _run_script(executable: str, script: str, timeout: float | None = None) -> str:
20
"""Run a script and return the output."""
21
- command = [executable, "-EsSc", script]
+ command = [executable, "-Ic", script]
22
logger.debug("Running script: %s", command)
23
return subprocess.run(
24
command,
0 commit comments