fix(deps): skip pyrealsense2 on macOS#1556
Merged
paul-nechifor merged 2 commits intodevfrom Mar 14, 2026
Merged
Conversation
Contributor
Greptile SummaryAdds a Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["uv sync / pip install"] --> B{"sys_platform?"}
B -->|"darwin (macOS)"| C["Skip pyrealsense2"]
B -->|"linux"| D["Install pyrealsense2"]
D --> E["RealSenseCamera.start()"]
E --> F["import pyrealsense2 as rs"]
C --> G["RealSenseCamera not used on macOS"]
Last reviewed commit: 8054dc3 |
Dreamsorcerer
approved these changes
Mar 14, 2026
paul-nechifor
approved these changes
Mar 14, 2026
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.
Problem
pyrealsense2is not available on macOS, souv sync/pip installfailsSolution
Added a
sys_platform != 'darwin'so macos can install the rest of manipulationBreaking Changes
None
How to Test
On macOS:
uv sync --all-extras --no-extra dds # Should succeed without trying to install pyrealsense2On Linux:
Contributor License Agreement