Skip to content

Commit

Permalink
Port subsystem to Python 3 (pantsbuild#6199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Arellano authored and Chris Livingston committed Aug 27, 2018
1 parent 3301a7e commit ad0cd39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/python/pants/subsystem/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

python_library(
dependencies = [
'3rdparty/python:future',
'3rdparty/python/twitter/commons:twitter.common.collections',
'src/python/pants/option',
],
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/subsystem/subsystem_client_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from __future__ import absolute_import, division, print_function, unicode_literals

from builtins import object
from collections import namedtuple

from twitter.common.collections import OrderedSet
Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/subsystem/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
python_tests(
sources=['test_subsystem.py'],
dependencies=[
'3rdparty/python:future',
'src/python/pants/option',
'src/python/pants/subsystem',
],
Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/subsystem/test_subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from __future__ import absolute_import, division, print_function, unicode_literals

import unittest
from builtins import object

from pants.option.optionable import Optionable
from pants.option.scope import ScopeInfo
Expand Down

0 comments on commit ad0cd39

Please sign in to comment.