running-process is a cross-platform operating-system process runtime for Rust
and Python. It gives applications one coherent abstraction over process
creation, pipes, PTYs, process trees, containment, observation, detached
daemons, and brokered long-lived services.
Operating-system process behavior is not portable by default. Windows Job
Objects and ConPTY, Unix process groups and signals, Linux tracing, named
pipes, Unix-domain sockets, child reaping, and terminal control all have
different lifetime and failure rules. running-process puts those rules in a
Rust core and exposes them through first-class Rust APIs and Python bindings.
This is deliberately more than a nicer subprocess. It is the process layer
for software that launches concurrent tools, owns descendant trees, drives
interactive terminals, survives parent death, observes nested executions, or
runs reusable daemon backends.
| Capability | What the abstraction owns |
|---|---|
| Commands and streams | Concurrent stdout/stderr capture, bounded waits, typed exits, text and bytes |
| Interactive terminals | Native PTYs on Windows, Linux, and macOS; expect rules, input relay, resize, interrupt, and idle detection |
| Process-tree lifetime | Containment, recursive terminate/kill, descendant cleanup, originator tagging, and zombie-aware tracking |
| Observation | Lifecycle events, process watches, exact Linux tree tracing, stack captures, and explicit loss records |
| Durable execution | Detached launch, daemon lifecycle, broker negotiation, session relay, health probes, and admin diagnostics |
| Operator tooling | Supervision CLI, cleanup manifests, terminal capability detection, probe UI, and process dashboard |
The Python package is not a separate reimplementation. Its bindings call the same Rust process engine used by native consumers, while providing Pythonic sync and asyncio surfaces.
Soldr uses running-process as its process
creation boundary and as the foundation of its successful daemon/broker
complex. A stable singleton broker negotiates and relays work to compatible
daemon generations, while running-process also supplies daemon spawning,
containment, endpoint identity probes, session transport, and process-tree
observation. That is the scale this library is designed for: long-lived,
concurrent infrastructure, not only one-shot child commands.
For the broker integration model, see INTEGRATE.md. For launched-tree diagnostics, see process watches.
Want to run or supervise a command? Start with subprocess_run,
RunningProcess, InteractiveProcess, or ContainedProcessGroup. They work
on a bare installation: no broker, daemon, service, or additional setup is
required.
Need a brokered process that can be supervised across sessions? That is the daemon/broker framework. The compatibility client now negotiates through the v2 broker and adopts the returned backend endpoint without changing existing callers. The frozen v1 schemas and operational references remain documented below for consumers that depend on them.
| API | Uses a broker? |
|---|---|
subprocess_run, RunningProcess, InteractiveProcess, PTY/expect/idle APIs | No |
ContainedProcessGroup, find_processes_by_originator, kill_process_tree | No |
launch_detached (and running_process.asyncio.launch_detached) | Yes — it connects to the broker, starting it when it is not already running |
running_process.daemon.spawn_daemon | No broker connection, but it uses the separately packaged binary trampoline and is intended for daemon infrastructure rather than ordinary process use |
Architecture, operations, schemas, rollout, and deployment references
The v1 broker work is documented as a stable spec alongside the implementation:
- Core spec: architecture, frozen commitments, pipe naming, platform behavior, security model
- Schemas: wire envelope, cache manifest, service definition, lifecycle events
- Consumer adoption: dashboard, clud, zccache, soldr, fbuild
- Operations: broker architecture, admin verbs, backend lifecycle, handoff optimization, observability
- Rollout: policy, escape hatch, troubleshooting
- Examples: minimal consumer, release-handles CLI, custom isolation
- Contrib service templates: systemd, launchd, Windows service installer
| Platform | CI |
|---|---|
| Linux | |
| macOS | |
| Windows | |
| Release |
Each ci-* workflow fans out to that platform's x86 and ARM lanes (and
musl on Linux), running build, lint, unit and integration stages per lane.
Process watches diagnose recursive tool launches and short-lived failing
descendants. Configure them before start() to observe the launched tree from
its first event:
frompathlibimportPathfromrunning_processimport (
ObservationPolicy,
ProcessWatch,
RunningProcess,
StackDump,
)
process=RunningProcess(
["soldr", "build"],
auto_run=False,
process_observation=ObservationPolicy.REQUIRE_EXACT,
process_watches=[
ProcessWatch.on_exec(
basename="soldr",
dump=StackDump(directory=Path("trace-dumps")),
limit=None,
label="recursive-soldr",
),
# -1 deliberately matches Unix exit status 255.ProcessWatch.on_exit(code=-1, limit=None, label="minus-one-exit"),
],
)
cursor=process.process_watch_cursor() # Open before start for no launch gap.process.start()
formatch_or_lossincursor:
print(match_or_loss)Watches return immutable matches with an explicit observation grade. Cursors
also return explicit loss records or retention gaps rather than silently
claiming complete coverage. AsyncRunningProcess.process_watch_cursor()
provides the same contract through async for.
| Platform | Best available backend | REQUIRE_EXACT |
|---|---|---|
| Linux | ptrace for the tree launched by this instance | supported (ExactTrace) |
| macOS | kqueue plus snapshot reconciliation | unavailable pending an authorized Endpoint Security provider |
| Windows | Job Object/IOCP | unavailable pending the invasive DEBUG_PROCESS supervisor |
Linux exact watches are for a newly launched tree, not an arbitrary
system-wide process-name watch. Attaching to an already-running process with
PTRACE_SEIZE is a distinct API with different permission, lifecycle, and
race semantics. LD_PRELOAD can support cooperative hooks, but cannot provide
the same coverage for static binaries, secure-exec/setuid programs, direct
syscalls, or programs that clear their environment. See
process watches for stack artifacts, capability
discovery, exact selector semantics, and the full platform model.
PTY support is a guaranteed part of the package contract on:
- Windows
- Linux
- macOS
On those platforms, RunningProcess.pseudo_terminal(...), wait_for_expect(...), and wait_for_idle(...) are core functionality rather than optional extras.
Pty.is_available() remains as a compatibility shim and only reports False on unsupported platforms.
running-process enables PSEUDOCONSOLE_PASSTHROUGH_MODE on Windows so the
master pipe receives the child's raw ANSI bytes instead of conhost's
synthesized re-emission. The flag is only honored natively on Windows 11 /
Server 2022 (build 22000+). On Windows 10, Microsoft's official answer is the
Microsoft.Windows.Console.ConPTY NuGet redistributable — a
paired conpty.dll + OpenConsole.exe that intercepts CreatePseudoConsole
and runs a modern OpenConsole instance instead of the system conhost.
This is transparent. Consumers do nothing. On first ConPTY use:
- Windows 11+ →
kernel32!CreatePseudoConsoledirectly. No extra files, no network, no behavior change. - Windows 10, cache hit → load
conpty.dllfrom the platform cache (%LOCALAPPDATA%\running-process\conpty\<rp-version>\<arch>\by default). Silent. - Windows 10, cache miss → one-time HTTPS fetch of
conpty-sidecar-<arch>.tar.zst(a few MB, zstd-19) from this crate's matching GitHub release, decompressed atomically into the cache, then loaded. Subsequent runs are silent cache hits. - Windows 10, fetch failure (no network, firewall, offline) → fall back
to
kernel32(legacy virtual-screen renderer) with a one-line warning. No crash.
Trust model: HTTPS to github.com plus GitHub's content-locked release assets mean an attacker who could substitute the sidecar could also substitute the crate itself. The runtime additionally SHA-256 verifies the downloaded bytes against a per-arch hash baked into the crate at compile time (see Integrity below) — defense-in-depth on top of HTTPS.
Pre-staging for air-gapped hosts: drop conpty.dll + OpenConsole.exe next
to the host executable. That path is checked before the cache and before any
network access, so air-gapped deployments never need network.
Each fetched sidecar asset has its SHA-256 baked into the crate at compile time
from conpty-sidecar.sha256.toml (the same manifest the release workflow
uploads alongside the tarballs). The runtime compares the downloaded bytes
against that hash before decompressing — a mismatch logs both hashes
(RUNNING_PROCESS_CONPTY_DIAGNOSTICS=1 shows it without the kernel32
fallback noise) and falls back to kernel32. This catches a mirror or
caching proxy corrupting bytes in flight and tightens the audit story when
an operator wants to compare runtime behavior against the published
SHA256SUMS for the release.
Pre-release dev checkouts ship with an empty manifest, so the runtime skips
verification with a one-line [diag] no expected sha for arch <arch>; downloading without verification log line. The release workflow rewrites
the manifest before wheels and the crate are built so each shipped artifact
bakes in hashes matching the tarballs uploaded to that same release (#447).
Env vars:
RUNNING_PROCESS_USE_SYSTEM_CONPTY=1— forcekernel32even on Windows 10. Skip the sidecar and the fetch entirely. Escape hatch.RUNNING_PROCESS_CONPTY_OFFLINE=1— never attempt the network fetch. The library still uses a pre-staged sidecar (next to the exe) or the existing cache; otherwise it falls back tokernel32. Use this in build sandboxes and air-gapped runners.RUNNING_PROCESS_CONPTY_CACHE=<dir>— override the sidecar cache root.RUNNING_PROCESS_CONPTY_DIAGNOSTICS=1— log the selected backend, the cache decision, and the detected Windows build on first ConPTY use.
Release assets only exist for running-process versions published after the
self-acquisition feature shipped. On an older version, Win10 hosts always
fall back to kernel32 unless a pre-staged sidecar is present.
Rust callers can inspect terminal graphics support with
running_process::current_terminal_capabilities() or the pure
running_process::detect_terminal_capabilities(...) helper. The result reports
Sixel, Kitty graphics, and iTerm2 File= image support as structured
capability records with status, evidence, source, and risks metadata.
The detector intentionally distinguishes terminal hosts from shells. cmd.exe,
PowerShell, Git Bash, bash, zsh, and fish are command interpreters; they do not
prove graphics support. The terminal host or multiplexer does: Windows
Terminal, xterm, foot, Konsole, WezTerm, Kitty, iTerm2, tmux, GNU screen, and
similar programs provide the relevant evidence. Weak aliases such as
TERM=xterm-256color are reported as unknown unless a live probe or stronger
host signal confirms support.
The package installs a running-process wrapper CLI for supervised command execution:
running-process --timeout 30 -- python -m pytest tests/test_cli.py
running-process --wall-clock-timeout 30 -- python worker.py
running-process --terminate-tree 12345
running-process --find-leaks -- python worker.py--timeout is an inactivity deadline: continuous stdout/stderr resets it. Use
--wall-clock-timeout when a command must be terminated after a fixed elapsed
budget even while it emits output. On either timeout, running-process kills
and reaps the supervised process tree through its cross-platform native layer.
Use --terminate-tree PID for an already-running tree; it returns non-zero
when the bounded native cleanup cannot verify the tree is gone. Consumers must
not invoke platform-specific tree-kill commands themselves.
--find-leaks tags the wrapped process tree with a unique originator marker and reports any
descendants still alive after the direct child exits.
The running-process-cleanup binary reads v1 broker CacheManifest files
without requiring a broker or daemon to be running. Manifests are written in two
places:
- each daemon cache root:
.running-process-manifest.pb - the central registry:
$XDG_DATA_HOME/running-process/manifests/on Linux,~/Library/Application Support/running-process/manifests/on macOS, and%APPDATA%\running-process\manifests\on Windows
Destructive commands are dry-run by default. Add --confirm to delete selected
roots:
running-process-cleanup list --json
running-process-cleanup verify --json
running-process-cleanup prune --dormant-after 30d
running-process-cleanup prune --dormant-after 30d --confirm
running-process-cleanup prune --keep-current --keep-last 2
running-process-cleanup uninstall zccache --keep-config
running-process-cleanup instances --jsonFor GitHub Actions cache restores, run verification after actions/cache@v4
restores daemon state. Manifests from a prior runner boot are reported as stale:
- uses: actions/cache@v4with:
path: ~/.local/share/running-processkey: running-process-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- name: Verify restored running-process manifestsrun: running-process-cleanup verify --jsonfromrunning_processimportRunningProcessprocess=RunningProcess(
["python", "-c", "import sys; print('out'); print('err', file=sys.stderr)"]
)
process.wait()
print(process.stdout) # stdout onlyprint(process.stderr) # stderr onlyprint(process.combined_output) # combined compatibility viewCaptured data values stay plain str | bytes. Live stream handles are exposed separately:
ifprocess.stdout_stream.available():
print(process.stdout_stream.drain())Process priority is a first-class launch option:
fromrunning_processimportCpuPriority, RunningProcessprocess=RunningProcess(
["python", "-c", "import time; time.sleep(1)"],
nice=CpuPriority.LOW,
)nice= behavior:
- accepts either a raw
intniceness or a platform-neutralCpuPriority - on Unix, it maps directly to process niceness
- on Windows, positive values map to below-normal or idle priority classes and negative values map to above-normal or high priority classes
0leaves the default scheduler priority unchanged- positive values are the portable default; negative values may require elevated privileges
- the enum intentionally stops at
HIGH; there is no realtime tier
Available helpers:
get_next_stdout_line(timeout)get_next_stderr_line(timeout)get_next_line(timeout)for combined compatibility readsstream_iter(timeout)orfor stdout, stderr, exit_code in processdrain_stdout()drain_stderr()drain_combined()stdout_stream.available()stderr_stream.available()combined_stream.available()
stream_iter(...) yields tuple-like ProcessOutputEvent(stdout, stderr, exit_code) records.
Only one stream payload is populated per nonterminal item. When both pipes are drained, it yields
(EOS, EOS, exit_code) if the child has already exited, or (EOS, EOS, None) followed by a final
(EOS, EOS, exit_code) if the child closed both pipes before it exited.
RunningProcess.run(...) supports common subprocess.run(...) style cases including:
capture_output=Truetext=Trueencoding=...errors=...shell=Trueenv=...nice=...stdin=subprocess.DEVNULLinput=...in text or bytes form
Unsupported subprocess.run(...) kwargs now fail loudly instead of being silently ignored.
expect(...) is available on both the pipe-backed and PTY-backed process APIs.
importreimportsubprocessfromrunning_processimportRunningProcessprocess=RunningProcess(
["python", "-c", "print('prompt>'); import sys; print('echo:' + sys.stdin.readline().strip())"],
stdin=subprocess.PIPE,
)
process.expect("prompt>", timeout=5, action="hello\n")
match=process.expect(re.compile(r"echo:(.+)"), timeout=5)
print(match.groups)Supported action= forms:
strorbytes: write to stdin"interrupt": send Ctrl-C style interrupt when supported"terminate""kill"
Pipe-backed expect(...) matches line-delimited output. If the child writes prompts without trailing newlines, use the PTY API instead.
Use RunningProcess.pseudo_terminal(...) for interactive terminal sessions. It is chunk-oriented by design and preserves carriage returns and terminal control flow instead of normalizing it away.
fromrunning_processimportExpectRule, RunningProcesspty=RunningProcess.pseudo_terminal(
["python", "-c", "import sys; sys.stdout.write('name?'); sys.stdout.flush(); print('hello ' + sys.stdin.readline().strip())"],
text=True,
expect=[ExpectRule("name?", "world\n")],
expect_timeout=5,
)
print(pty.output)PTY behavior:
- accepts
strandlist[str]commands - auto-splits simple string commands into argv when shell syntax is not present
- uses shell mode automatically when shell metacharacters are present
- is guaranteed on supported Windows, Linux, and macOS builds
- keeps output chunk-buffered by default
- preserves
\rfor redraw-style terminal output - supports
write(...),read(...),drain(),available(),expect(...),resize(...), andsend_interrupt() - supports
nice=...at launch - supports
interrupt_and_wait(...)for staged interrupt escalation - supports
wait_for_idle(...)with activity filtering - exposes
exit_reason,interrupt_count,interrupted_by_caller, andexit_status
wait_for_idle(...) has two modes:
- default fast path: built-in PTY activity rules and optional process metrics
- slow path:
IdleDetection(idle_reached=...), where your Python callback receives anIdleInfoDiffdelta and returnsIdleDecision.DEFAULT,IdleDecision.ACTIVE,IdleDecision.BEGIN_IDLE, orIdleDecision.IS_IDLE
There is also a compatibility alias: RunningProcess.psuedo_terminal(...).
Rust consumers should make the same transport choice explicitly: use
NativeProcess for one-shot noninteractive work and
InteractivePtySession / NativePtyProcess only for real terminal sessions.
See Rust PTY guidance.
You can also inspect the intended interactive launch semantics without launching a child:
fromrunning_processimportRunningProcessspec=RunningProcess.interactive_launch_spec("console_isolated")
print(spec.ctrl_c_owner)
print(spec.creationflags)Supported launch specs:
pseudo_terminalconsole_sharedconsole_isolated
For an actual launch, use RunningProcess.interactive(...):
process=RunningProcess.interactive(
["python", "-c", "print('hello from interactive mode')"],
mode="console_shared",
nice=5,
)
process.wait()By default, nonzero exits stay subprocess-like: you get a return code and can inspect exit_status.
process=RunningProcess(["python", "-c", "import sys; sys.exit(3)"])
process.wait()
print(process.exit_status)If you want abnormal exits to raise, opt in:
fromrunning_processimportProcessAbnormalExit, RunningProcesstry:
RunningProcess.run(
["python", "-c", "import sys; sys.exit(3)"],
capture_output=True,
raise_on_abnormal_exit=True,
)
exceptProcessAbnormalExitasexc:
print(exc.status.summary)Notes:
- keyboard interrupts still raise
KeyboardInterrupt kill -9/SIGKILLis classified as an abnormal signal exit- possible OOM conditions are exposed as a hint on
exit_status.possible_oom - OOM cannot be identified perfectly across platforms from exit status alone, so it is best-effort rather than guaranteed
Pipe mode is byte-safe internally:
- invalid UTF-8 does not break capture
- text mode decodes with UTF-8 and
errors="replace"by default - binary mode returns bytes unchanged
\r\nis normalized as a line break in pipe mode- bare
\ris preserved
PTY mode is intentionally more conservative:
- output is handled as chunks, not lines
- redraw-oriented
\ris preserved - no automatic terminal-output normalization is applied
./install
./lint
./test./install bootstraps rustup into the shared user locations (~/.cargo and ~/.rustup, or CARGO_HOME / RUSTUP_HOME if you override them), then installs the exact toolchain pinned in rust-toolchain.toml. Toolchain installs are serialized with a lock so concurrent repo bootstraps do not race the same shared version. Rust build commands run through uvx soldr, so there is no separate soldr install step to maintain.
./lint applies cargo fmt and Ruff autofixes before running the remaining lint checks, so fixable issues are rewritten in place.
./test runs the Rust tests, rebuilds the native extension with the unoptimized dev profile, runs the non-live Python tests, and then runs the @pytest.mark.live coverage that exercises real OS process and signal behavior.
The native Linux x86 consolidated preflight runs the repository-owned
running_process_env_literal lint. It rejects direct string literals for
RUNNING_PROCESS_* environment controls in std::env calls, keeping broker
escape hatches and test seams tied to their canonical constants. The lint
library, cargo-dylint, and dylint-link are pinned to Dylint 6.0.1; the
library and CI both use nightly-2026-04-16.
To run the same gate locally:
soldr rustup toolchain install nightly-2026-04-16 --profile minimal \
--component rustc-dev --component llvm-tools-preview
uvx soldr cargo install cargo-dylint@6.0.1 dylint-link@6.0.1 --locked
(
cd lints/running-process-env-literal
CARGO_TARGET_DIR=../../target/dylint RUSTUP_TOOLCHAIN=nightly-2026-04-16 \
uvx soldr cargo test --locked
)
CARGO_TARGET_DIR=target/dylint RUSTUP_TOOLCHAIN=nightly-2026-04-16 \
uvx soldr cargo dylint --all --workspaceThe first check exercises the negative UI fixture and proves the lint rejects a literal control name. The second checks the workspace. CI gives the exact tool binaries and nightly target directory dedicated persistent caches and runs the gate once, rather than adding a cold Dylint build to every platform job.
On local developer machines, ./test also runs the Linux Docker preflight so Windows and macOS development catches Linux wheel, lint, and non-live pytest regressions before push. GitHub-hosted Actions skip that Docker-only preflight and run the native platform suite directly.
For a live-only test run with the timeout crash watchdog and automatic thread dumps still enabled, use:
uv run -m ci.test --live-onlyFor a narrower live-only selection, pass pytest targets and selectors through the same entrypoint:
uv run -m ci.test --live-only tests/test_pty_support.py interruptFor direct Cargo build commands, use uvx soldr directly:
uvx soldr cargo check --workspace
uvx soldr cargo test --workspace
uvx soldr cargo package -p running-process --no-verifyKeep maturin, cargo fmt, and cargo clippy on their normal entrypoints.
This repo's high-level scripts already choose the compatible path for those
tools.
On Windows, native rebuilds that compile bundled C code should run from a Visual Studio developer shell. When the environment is ambiguous, point maturin at the MSVC toolchain binaries directly rather than relying on the generic cargo proxy.
For local extension rebuilds, prefer:
uv run build.pyThat defaults to building a dev-profile wheel and reinstalling it into the repo's uv environment, which keeps the native extension in site-packages instead of copying it into src/. For publish-grade artifacts, use:
uv run build.py --releaseReleases are cut by the Auto Release GitHub Actions workflow. Bump project.version in pyproject.toml (and match workspace.package.version in Cargo.toml), push the commit to main, and the workflow will:
- Build wheels for linux x86/arm, macOS x86/arm, and Windows x86/arm and publish them to PyPI via trusted publishing.
- Publish
running-process-{proto, core, client, py}to crates.io in dependency order (requires the repo secretCARGO_REGISTRY_TOKEN). - Build standalone
runpmandrunning-process-daemonbinaries for each target and attach them — alongside the wheels,install.sh,install.ps1, andSHA256SUMS— to a new GitHub Release.
You can also fire the workflow manually with gh workflow run auto-release.yml, or by pushing a vX.Y.Z tag.
The standalone binaries can be installed without pip:
curl -LsSf https://github.com/zackees/running-process/releases/latest/download/install.sh | shpowershell -ExecutionPolicy Bypass -c "irm https://github.com/zackees/running-process/releases/latest/download/install.ps1 | iex"ContainedProcessGroup ensures all child processes are killed when the group is dropped, using OS-level mechanisms (Job Objects on Windows, process groups + SIGKILL on Unix).
fromrunning_processimportContainedProcessGroupwithContainedProcessGroup() asgroup:
proc=group.spawn(["sleep", "3600"])
# all children killed on exit, even on crashWhen a parent crashes, its in-process registry is lost. ContainedProcessGroup can stamp every child with an environment variable that survives parent death:
fromrunning_processimportContainedProcessGroup, find_processes_by_originator# At launch: tag children with your tool namewithContainedProcessGroup(originator="MYTOOL") asgroup:
proc=group.spawn(["long-running-worker"])
# Later (from any process, any session): find orphansstale=find_processes_by_originator("MYTOOL")
forinfoinstale:
ifnotinfo.parent_alive:
print(f"Orphaned PID {info.pid} from dead parent {info.parent_pid}")The env var RUNNING_PROCESS_ORIGINATOR=TOOL:PID is inherited by all descendants. The scanner uses process start times to guard against PID reuse.
Uses the v1 broker.
launch_detached(...)is not a plain subprocess launcher: it connects to the running-process broker so the broker can own tracking after the caller returns. It reuses a running broker or starts one withrunning-process-daemon start; if a daemon binary next to the current executable or arunning-process-daemonexecutable onPATHcannot start it, the call fails.For a command that only needs normal process supervision while its caller is alive, use
RunningProcess,InteractiveProcess, orsubprocess_runinstead. They do not use the broker.
Use launch_detached(...) when a caller needs a broker-tracked shell command
and return immediately:
fromrunning_processimportlaunch_detachedhandle=launch_detached(
"python worker.py",
cwd=".",
env={"WORKER_MODE": "background"},
originator="mytool:session-1",
)
print(handle.pid)launch_detached is separate from running_process.daemon.spawn_daemon(...),
which uses the binary trampoline for process-name behavior. The trampoline API
is daemon infrastructure, not a prerequisite for the ordinary process APIs.
Call running_process.daemon.trampoline_available() for a non-raising
capability check before using it. Wheel builds now fail validation unless the
platform trampoline is present in running_process/assets/.
RunningProcess, InteractiveProcess, and PTY-backed launches register their live PIDs in a SQLite database. The default location is:
- Windows:
%LOCALAPPDATA%\\running-process\\tracked-pids.sqlite3 - Override:
RUNNING_PROCESS_PID_DB=/custom/path/tracked-pids.sqlite3
If a bad run leaves child processes behind, terminate everything still tracked in the database:
python scripts/terminate_tracked_processes.pystdoutandstderrare no longer merged by default.combined_outputexists for compatibility when you need the merged view.RunningProcess(..., use_pty=True)is no longer the preferred path; useRunningProcess.pseudo_terminal(...)for PTY sessions.- On supported Windows builds, PTY support is provided by the native Rust extension rather than a Python
winptyfallback. - The test suite checks that
running_process.__version__, package metadata, and manifest versions stay in sync.