Skip to content

Commit a262543

Browse files
Move eigen dependency into rednose (#38321)
* Move eigen dependency into rednose * Declare complete rednose package dependencies * Update rednose submodule * Update rednose submodule * Update rednose submodule * Fix rednose dependency integration * bump rednose
1 parent c91731b commit a262543

5 files changed

Lines changed: 15 additions & 9 deletions

File tree

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ assert arch in [
5555
"Darwin", # macOS arm64 (x86 not supported)
5656
]
5757

58-
pkg_names = ['acados', 'bzip2', 'capnproto', 'catch2', 'eigen', 'ffmpeg', 'json11', 'ncurses', 'zeromq', 'zstd']
58+
pkg_names = ['acados', 'bzip2', 'capnproto', 'catch2', 'ffmpeg', 'json11', 'ncurses', 'zeromq', 'zstd']
5959
pkgs = [importlib.import_module(name) for name in pkg_names]
6060
acados = pkgs[pkg_names.index('acados')]
6161
ffmpeg = pkgs[pkg_names.index('ffmpeg')]

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ dependencies = [
1212
# multiple users
1313
"sounddevice", # micd + soundd
1414
"requests", # many one-off uses
15-
"sympy", # rednose + friends
1615
"tqdm", # cars (fw_versions.py) on start + many one-off uses
1716

1817
# core
@@ -29,7 +28,6 @@ dependencies = [
2928
"comma-deps-capnproto",
3029
"comma-deps-catch2",
3130
"comma-deps-acados",
32-
"comma-deps-eigen",
3331
"comma-deps-ffmpeg",
3432
"comma-deps-zstd",
3533
"comma-deps-ncurses",

tools/release/build_stripped.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ git submodule foreach --recursive git clean -xdff
3838
# do the files copy
3939
echo "[-] copying files T=$SECONDS"
4040
cd $SOURCE_DIR
41-
cp -pR --parents $(./tools/release/release_files.py) $TARGET_DIR/
41+
./tools/release/release_files.py | xargs -d '\n' cp -pR --parents -t "$TARGET_DIR"
4242

4343
# in the directory
4444
cd $TARGET_DIR

uv.lock

Lines changed: 12 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)