Revert "MacOS Support: tests + devShell + mujoco"#825
Closed
Conversation
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Contributor
Greptile OverviewGreptile SummaryThis PR reverts the MacOS support changes from PR #745, removing all MacOS-specific functionality and returning the codebase to a Linux-only configuration. Key Changes:
The revert appears complete with no remaining MacOS-specific code detected in the codebase. Confidence Score: 4/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Nix as Nix DevShell
participant App as Application
participant Models as ML Models
participant LCM as LCM Service
participant Mujoco as MuJoCo Subprocess
Note over Dev,Mujoco: Before Revert (MacOS Support)
Dev->>Nix: nix develop (with xome, lib)
Nix-->>Dev: MacOS + Linux support
Dev->>App: Start application
App->>Models: Initialize (CUDA/MPS/CPU)
Models-->>App: Device: MPS on MacOS
App->>LCM: Configure network (platform.system())
LCM-->>App: MacOS-specific routes (lo0, smaller buffers)
App->>Mujoco: Start with mjpython
Mujoco-->>App: Process started
Note over Dev,Mujoco: After Revert (Linux Only)
Dev->>Nix: nix develop (simplified)
Nix-->>Dev: Linux-only support
Dev->>App: Start application
App->>Models: Initialize (CUDA/CPU only)
Models-->>App: Device: CUDA or CPU
App->>LCM: Configure network (no platform detection)
LCM-->>App: Linux routes (lo, larger buffers)
App->>Mujoco: Start with sys.executable
Mujoco-->>App: Process started
|
spomichter
approved these changes
Dec 11, 2025
Contributor
Author
|
reverted just flake |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reverts #745