Skip to content

Commit

Permalink
Port ivy to Python 3 (#6154)
Browse files Browse the repository at this point in the history
Part of #6062.
  • Loading branch information
Eric-Arellano authored and Stu Hood committed Jul 17, 2018
1 parent e61a164 commit f5b8bd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/python/pants/ivy/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',
'3rdparty/python:six',
'src/python/pants/base:build_environment',
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/ivy/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import logging
import os
import shutil
from builtins import map, object

from pants.base.build_environment import get_buildroot
from pants.ivy.ivy import Ivy
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/ivy/ivy.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 os.path
from builtins import object
from contextlib import contextmanager

from six import string_types
Expand Down

0 comments on commit f5b8bd8

Please sign in to comment.