Skip to content

Commit f4d74fd

Browse files
committed
I cannot print in setup.py ?
1 parent 162a0d8 commit f4d74fd

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[![pixi](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fprefix-dev%2Fpixi%2Fmain%2Fassets%2Fbadge%2Fv0.json&color=006400)](https://pixi.sh)
1212
[![rtb](https://img.shields.io/badge/Powered_by-Robotics_toolbox-006400)](https://github.com/petercorke/robotics-toolbox-python)
13-
[![test](https://github.com/2lian/Motion-Stack/actions/workflows/doit_install.yaml/badge.svg)](https://github.com/2lian/Motion-Stack/actions/workflows/doit_install.yaml)
13+
[![test](https://github.com/2lian/Motion-Stack/actions/workflows/pixi_tests.yaml/badge.svg)](https://github.com/2lian/Motion-Stack/actions/workflows/pixi_tests.yaml)
1414

1515
From modular robots with distributed computation, to a simple robotic arm, the motion stack provides control for (multi-)limbed systems. The goal of the project is maximum flexibility reflecting the flexibility of modular robotics, while abstracting away the complexity of such systems.
1616

docs/build/md/markdown/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[![pixi](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fprefix-dev%2Fpixi%2Fmain%2Fassets%2Fbadge%2Fv0.json&color=006400)](https://pixi.sh)
1111
[![rtb](https://img.shields.io/badge/Powered_by-Robotics_toolbox-006400)](https://github.com/petercorke/robotics-toolbox-python)
12-
[![test](https://github.com/2lian/Motion-Stack/actions/workflows/doit_install.yaml/badge.svg)](https://github.com/2lian/Motion-Stack/actions/workflows/doit_install.yaml)
12+
[![test](https://github.com/2lian/Motion-Stack/actions/workflows/pixi_tests.yaml/badge.svg)](https://github.com/2lian/Motion-Stack/actions/workflows/pixi_tests.yaml)
1313

1414
From modular robots with distributed computation, to a simple robotic arm, the motion stack provides control for (multi-)limbed systems. The goal of the project is maximum flexibility reflecting the flexibility of modular robotics, while abstracting away the complexity of such systems.
1515

src/motion_stack/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ def get_ros_distro():
1212
roses = {(f.split("/")[-1]) for f in files}
1313
the_ros = roses & VALID_ROS
1414
if len(the_ros) != 1:
15-
print(
16-
f"ROS2 distro could not be deduced, falling back to jazzy."
17-
)
15+
# ROS2 distro could not be deduced, falling back to jazzy.
1816
the_ros = ["jazzy"]
1917
return the_ros.pop()
2018

0 commit comments

Comments
 (0)