Skip to content

Commit

Permalink
chore(simulator_compatibility_test): suppress setuptools warnings (au…
Browse files Browse the repository at this point in the history
…towarefoundation#2483)

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com>
  • Loading branch information
isamu-takagi authored and HansRobo committed Dec 16, 2022
1 parent c9d525c commit 956878a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/simulator_test/simulator_compatibility_test/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
from warnings import simplefilter

from pkg_resources import PkgResourcesDeprecationWarning
from setuptools import SetuptoolsDeprecationWarning
from setuptools import setup

simplefilter("ignore", category=SetuptoolsDeprecationWarning)
simplefilter("ignore", category=PkgResourcesDeprecationWarning)

package_name = "simulator_compatibility_test"
clients = "simulator_compatibility_test/clients/"
publishers = "simulator_compatibility_test/publishers/"
Expand Down

0 comments on commit 956878a

Please sign in to comment.