File tree 8 files changed +7
-7
lines changed
8 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
from pip ._internal .models .selection_prefs import SelectionPreferences
23
23
from pip ._internal .models .target_python import TargetPython
24
24
from pip ._internal .network .session import PipSession
25
+ from pip ._internal .operations .build .build_tracker import BuildTracker
25
26
from pip ._internal .operations .prepare import RequirementPreparer
26
27
from pip ._internal .req .constructors import (
27
28
install_req_from_editable ,
31
32
)
32
33
from pip ._internal .req .req_file import parse_requirements
33
34
from pip ._internal .req .req_install import InstallRequirement
34
- from pip ._internal .req .req_tracker import BuildTracker
35
35
from pip ._internal .resolution .base import BaseResolver
36
36
from pip ._internal .self_outdated_check import pip_self_version_check
37
37
from pip ._internal .utils .deprecation import deprecated
Original file line number Diff line number Diff line change 7
7
from pip ._internal .cli .cmdoptions import make_target_python
8
8
from pip ._internal .cli .req_command import RequirementCommand , with_cleanup
9
9
from pip ._internal .cli .status_codes import SUCCESS
10
- from pip ._internal .req . req_tracker import get_build_tracker
10
+ from pip ._internal .operations . build . build_tracker import get_build_tracker
11
11
from pip ._internal .utils .misc import ensure_dir , normalize_path , write_output
12
12
from pip ._internal .utils .temp_dir import TempDirectory
13
13
Original file line number Diff line number Diff line change 21
21
from pip ._internal .locations import get_scheme
22
22
from pip ._internal .metadata import get_environment
23
23
from pip ._internal .models .format_control import FormatControl
24
+ from pip ._internal .operations .build .build_tracker import get_build_tracker
24
25
from pip ._internal .operations .check import ConflictDetails , check_install_conflicts
25
26
from pip ._internal .req import install_given_reqs
26
27
from pip ._internal .req .req_install import InstallRequirement
27
- from pip ._internal .req .req_tracker import get_build_tracker
28
28
from pip ._internal .utils .compat import WINDOWS
29
29
from pip ._internal .utils .distutils_args import parse_distutils_args
30
30
from pip ._internal .utils .filesystem import test_writable_dir
Original file line number Diff line number Diff line change 9
9
from pip ._internal .cli .req_command import RequirementCommand , with_cleanup
10
10
from pip ._internal .cli .status_codes import SUCCESS
11
11
from pip ._internal .exceptions import CommandError
12
+ from pip ._internal .operations .build .build_tracker import get_build_tracker
12
13
from pip ._internal .req .req_install import InstallRequirement
13
- from pip ._internal .req .req_tracker import get_build_tracker
14
14
from pip ._internal .utils .misc import ensure_dir , normalize_path
15
15
from pip ._internal .utils .temp_dir import TempDirectory
16
16
from pip ._internal .wheel_builder import build , should_build_for_wheel_command
File renamed without changes.
Original file line number Diff line number Diff line change 33
33
dist_from_wheel_url ,
34
34
)
35
35
from pip ._internal .network .session import PipSession
36
+ from pip ._internal .operations .build .build_tracker import BuildTracker
36
37
from pip ._internal .req .req_install import InstallRequirement
37
- from pip ._internal .req .req_tracker import BuildTracker
38
38
from pip ._internal .utils .filesystem import copy2_fixed
39
39
from pip ._internal .utils .hashes import Hashes , MissingHashes
40
40
from pip ._internal .utils .logging import indent_log
Original file line number Diff line number Diff line change 11
11
from pip ._internal .models .search_scope import SearchScope
12
12
from pip ._internal .models .selection_prefs import SelectionPreferences
13
13
from pip ._internal .network .session import PipSession
14
+ from pip ._internal .operations .build .build_tracker import get_build_tracker
14
15
from pip ._internal .operations .prepare import RequirementPreparer
15
16
from pip ._internal .req .constructors import install_req_from_line
16
- from pip ._internal .req .req_tracker import get_build_tracker
17
17
from pip ._internal .resolution .resolvelib .factory import Factory
18
18
from pip ._internal .resolution .resolvelib .provider import PipProvider
19
19
from pip ._internal .utils .temp_dir import TempDirectory , global_tempdir_manager
Original file line number Diff line number Diff line change 23
23
from pip ._internal .index .package_finder import PackageFinder
24
24
from pip ._internal .metadata .pkg_resources import Distribution
25
25
from pip ._internal .network .session import PipSession
26
+ from pip ._internal .operations .build .build_tracker import get_build_tracker
26
27
from pip ._internal .operations .prepare import RequirementPreparer
27
28
from pip ._internal .req import InstallRequirement , RequirementSet
28
29
from pip ._internal .req .constructors import (
39
40
get_line_parser ,
40
41
handle_requirement_line ,
41
42
)
42
- from pip ._internal .req .req_tracker import get_build_tracker
43
43
from pip ._internal .resolution .legacy .resolver import Resolver
44
44
from pip ._internal .utils .urls import path_to_url
45
45
from tests .lib import TestData , make_test_finder , requirements_file
You can’t perform that action at this time.
0 commit comments