Skip to content

Commit

Permalink
Implements a hotfix for building on ROS2 Humble described in ament/am…
Browse files Browse the repository at this point in the history
  • Loading branch information
William Freidank authored and William Freidank committed Jul 8, 2024
1 parent 06c280a commit f2f377d
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sound_play/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
builtin_interfaces
)

ament_python_install_package(${PROJECT_NAME})
ament_python_install_package(${PROJECT_NAME}_py)

install(PROGRAMS
scripts/is_speaking.py
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/play.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/playbuiltin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/playpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/say.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/shutup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/soundclient_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import rclpy
import rclpy.utilities

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient

from sound_play.msg import SoundRequest

Expand Down
2 changes: 1 addition & 1 deletion sound_play/scripts/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

import rclpy

from sound_play.libsoundplay import SoundClient
from sound_play_py.libsoundplay import SoundClient

from sound_play.msg import SoundRequest

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f2f377d

Please sign in to comment.