Skip to content

Commit

Permalink
Fix duplicated empy
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 authored Oct 17, 2024
1 parent 20276b0 commit afacd99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extra_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def build_microros(*args, **kwargs):
##############################

pip_packages = [x.split("==")[0] for x in os.popen('{} -m pip freeze'.format(env['PYTHONEXE'])).read().split('\n')]
required_packages = ["catkin-pkg", "lark-parser", "empy", "colcon-common-extensions", "importlib-resources", "pyyaml", "pytz", "markupsafe==2.0.1", "empy==3.3.4"]
required_packages = ["catkin-pkg", "lark-parser", "colcon-common-extensions", "importlib-resources", "pyyaml", "pytz", "markupsafe==2.0.1", "empy==3.3.4"]
if all([x in pip_packages for x in required_packages]):
print("All required Python pip packages are installed")

Expand Down Expand Up @@ -170,4 +170,4 @@ def update_env():
if set(["clean_microros", "clean_libmicroros", "_idedata", "idedata"]).isdisjoint(set(COMMAND_LINE_TARGETS)):
build_microros()

update_env()
update_env()

0 comments on commit afacd99

Please sign in to comment.