Skip to content

Commit

Permalink
fix build warnings (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikhil-Singhal-06 authored and fred-labs committed Aug 13, 2024
1 parent 1923c29 commit 6593c50
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions examples/example_multi_robot/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
('share/' + PACKAGE_NAME, ['package.xml']),
(os.path.join('share', PACKAGE_NAME, 'models'), glob('models/*.sdf')),
(os.path.join('share', PACKAGE_NAME, 'launch'), glob('launch/*.py')),
],
Expand Down
4 changes: 2 additions & 2 deletions libs/scenario_execution_kubernetes/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@

from glob import glob
import os
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

PACKAGE_NAME = 'scenario_execution_kubernetes'

setup(
name=PACKAGE_NAME,
version='1.1.0',
packages=find_packages(),
packages=find_namespace_packages(),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
Expand Down
4 changes: 2 additions & 2 deletions test/scenario_execution_gazebo_test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
""" Setup python package """
from glob import glob
import os
from setuptools import find_namespace_packages, setup
from setuptools import find_packages, setup

PACKAGE_NAME = 'scenario_execution_gazebo_test'

setup(
name=PACKAGE_NAME,
version='1.2.0',
packages=find_namespace_packages(),
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
Expand Down
4 changes: 2 additions & 2 deletions test/scenario_execution_nav2_test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
""" Setup python package """
from glob import glob
import os
from setuptools import find_namespace_packages, setup
from setuptools import find_packages, setup

PACKAGE_NAME = 'scenario_execution_nav2_test'

setup(
name=PACKAGE_NAME,
version='1.2.0',
packages=find_namespace_packages(),
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
Expand Down

0 comments on commit 6593c50

Please sign in to comment.