From 6b07abd8a48164a183298da784730f06238b2be2 Mon Sep 17 00:00:00 2001 From: Eric Arellano Date: Mon, 25 Feb 2019 21:49:52 -0700 Subject: [PATCH] Remove bad import My bad for not catching this before pushing. --- src/python/pants/backend/python/tasks/python_binary_create.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/python/pants/backend/python/tasks/python_binary_create.py b/src/python/pants/backend/python/tasks/python_binary_create.py index 76a0f357b26..b4abb43d5e7 100644 --- a/src/python/pants/backend/python/tasks/python_binary_create.py +++ b/src/python/pants/backend/python/tasks/python_binary_create.py @@ -15,7 +15,6 @@ has_python_sources, has_resources, is_python_target) from pants.backend.python.subsystems.python_native_code import PythonNativeCode -from pants.backend.python.subsystems.python_setup import PythonSetup from pants.backend.python.targets.python_binary import PythonBinary from pants.backend.python.targets.python_requirement_library import PythonRequirementLibrary from pants.base.build_environment import get_buildroot @@ -141,7 +140,7 @@ def _create_binary(self, binary_tgt, results_dir): if is_python_target(tgt): constraint_tgts.append(tgt) - # Add global and target-level interpreter compatibility constraints to pex info. + # Add target-level and possibly global interpreter compatibility constraints to pex info. pex_builder.add_interpreter_constraints_from(constraint_tgts) # Dump everything into the builder's chroot.