Skip to content

Commit

Permalink
Revert "Pin flake8-builtins to sidestep regression (#129)" (#130)
Browse files Browse the repository at this point in the history
This reverts commit ae6bdae.
  • Loading branch information
dhood authored and dirk-thomas committed Mar 22, 2018
1 parent ae6bdae commit 94e439b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ros2_batch_job/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
'coverage',
'flake8',
'flake8-blind-except',
'flake8-builtins==1.0.post0',
'flake8-builtins',
'flake8-class-newline',
'flake8-comprehensions',
'flake8-deprecated',
Expand Down
3 changes: 3 additions & 0 deletions ros2_batch_job/osx_batch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def pre(self):
# See: https://github.com/Homebrew/homebrew-core/issues/8392#issuecomment-334328367
os.environ['CMAKE_PREFIX_PATH'] = os.environ.get('CMAKE_PREFIX_PATH', '') + os.pathsep + '/usr/local/opt/qt'

def post(self):
pass

def show_env(self):
# Show the env
self.run(['export'], shell=True)
Expand Down
3 changes: 3 additions & 0 deletions ros2_batch_job/windows_batch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def pre(self):
if 'ROS_DOMAIN_ID' not in os.environ:
os.environ['ROS_DOMAIN_ID'] = '119'

def post(self):
pass

def show_env(self):
# Show the env
self.run(['set'], shell=True)
Expand Down

0 comments on commit 94e439b

Please sign in to comment.