Skip to content

Commit

Permalink
Install custom fork of python-humanfriendly
Browse files Browse the repository at this point in the history
This is to fix our Windows builds until xolox/python-humanfriendly#45 is resolved.

Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron committed Oct 2, 2020
1 parent 4b3511a commit 1d7dc53
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ros2_batch_job/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,12 @@ def run(args, build_function, blacklisted_package_names=None):
# Install pip dependencies
pip_packages = list(pip_dependencies)
if sys.platform == 'win32':
# Install custom fork of python-humanfriendly
# TODO(jacobperron): Remove this once the issue is resolved upstream
# https://github.com/xolox/python-humanfriendly/pull/45
pip_packages += [
'git+https://github.com/dirk-thomas/python-humanfriendly@dirk-thomas/skip-pyreadline-py39',
]
if args.cmake_build_type == 'Debug':
if args.ros_distro in ['dashing', 'eloquent']:
pip_packages += [
Expand Down

0 comments on commit 1d7dc53

Please sign in to comment.