Skip to content

Commit

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

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

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
  • Loading branch information
isamu-takagi authored Dec 12, 2022
1 parent 727586b commit d8ece00
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 d8ece00

Please sign in to comment.