Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{ vals.pkg=pkgs.cctools; flags={}; onlyIf=pkgs.stdenv.isDarwin; } # for pip install opencv-python
{ vals.pkg=pkgs.pcre2; flags={ ldLibraryGroup=pkgs.stdenv.isDarwin; packageConfGroup=pkgs.stdenv.isDarwin; }; }
{ vals.pkg=pkgs.libsysprof-capture; flags.packageConfGroup=true; onlyIf=pkgs.stdenv.isDarwin; }
{ vals.pkg=pkgs.xcbuild; flags={}; }
{ vals.pkg=pkgs.xcbuild; flags={}; onlyIf=pkgs.stdenv.isDarwin; }
Copy link
Member Author

@jeff-hykin jeff-hykin Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change was on dev at some point idk how it got removed but not having it causes problems because xcbuild is a macos tool

{ vals.pkg=pkgs.git-lfs; flags={}; }
{ vals.pkg=pkgs.gnugrep; flags={}; }
{ vals.pkg=pkgs.gnused; flags={}; }
Expand Down
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ dependencies = [
"colorlog==6.9.0",
# Core Msgs
"opencv-python",
"open3d",
"open3d-unofficial-arm; platform_system == 'Linux' and platform_machine == 'aarch64'",
"open3d>=0.18.0; platform_system != 'Linux' or platform_machine != 'aarch64'",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the ONLY change that should be in this PR, everything else is to pass CI

# CLI
"pydantic-settings>=2.11.0,<3",
"textual==3.7.1",
Expand Down Expand Up @@ -171,7 +172,7 @@ unitree = [

manipulation = [
# Planning (Drake)
"drake>=1.40.0",
"drake>=1.40.0; platform_machine != 'aarch64'",

# Hardware SDKs
"piper-sdk",
Expand All @@ -195,13 +196,13 @@ cpu = [
]

cuda = [
"cupy-cuda12x==13.6.0",
"nvidia-nvimgcodec-cu12[all]",
"onnxruntime-gpu>=1.17.1", # Only versions supporting both cuda11 and cuda12
"cupy-cuda12x==13.6.0; platform_machine == 'x86_64'",
"nvidia-nvimgcodec-cu12[all]; platform_machine == 'x86_64'",
"onnxruntime-gpu>=1.17.1; platform_machine == 'x86_64'", # Only versions supporting both cuda11 and cuda12
Copy link
Member

@Kaweees Kaweees Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some features may not work given we have to "mute" a lot of packages given they lack ARM support. We might have to build ARM wheels for all of these

Copy link
Member Author

@jeff-hykin jeff-hykin Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah I was debating these. Right now cuda on arm doesn't work because of the jetpack issues anyways (like on the G1). Its a medium/low-priority to get cuda on Arm rn compared to just getting arm support. So I think its fine as-is

"ctransformers[cuda]==0.2.27",
"mmengine>=0.10.3",
"mmcv>=2.1.0",
"xformers>=0.0.20",
"xformers>=0.0.20; platform_machine == 'x86_64'",
]

dev = [
Expand Down Expand Up @@ -297,7 +298,8 @@ docker = [
"sortedcontainers",
"PyTurboJPEG",
"rerun-sdk",
"open3d"
"open3d-unofficial-arm; platform_system == 'Linux' and platform_machine == 'aarch64'",
"open3d>=0.18.0; platform_system != 'Linux' or platform_machine != 'aarch64'",
]

base = [
Expand Down
Loading
Loading