5
5
import os
6
6
7
7
from pip ._internal .exceptions import InstallationError
8
- from pip ._internal .utils .misc import ensure_dir
9
8
from pip ._internal .utils .setuptools_build import make_setuptools_egg_info_args
10
9
from pip ._internal .utils .subprocess import call_subprocess
10
+ from pip ._internal .utils .temp_dir import TempDirectory
11
11
from pip ._internal .utils .typing import MYPY_CHECK_RUNNING
12
- from pip ._internal .vcs import vcs
13
12
14
13
if MYPY_CHECK_RUNNING :
15
- from typing import List , Optional
16
-
17
14
from pip ._internal .build_env import BuildEnvironment
18
15
19
16
logger = logging .getLogger (__name__ )
20
17
21
18
22
- def _find_egg_info (source_directory , is_editable ):
23
- # type: (str, bool ) -> str
24
- """Find an .egg-info in `source_directory`, based on `is_editable `.
19
+ def _find_egg_info (directory ):
20
+ # type: (str) -> str
21
+ """Find an .egg-info subdirectory in `directory `.
25
22
"""
26
-
27
- def looks_like_virtual_env (path ):
28
- # type: (str) -> bool
29
- return (
30
- os .path .lexists (os .path .join (path , 'bin' , 'python' )) or
31
- os .path .exists (os .path .join (path , 'Scripts' , 'Python.exe' ))
32
- )
33
-
34
- def locate_editable_egg_info (base ):
35
- # type: (str) -> List[str]
36
- candidates = [] # type: List[str]
37
- for root , dirs , files in os .walk (base ):
38
- for dir_ in vcs .dirnames :
39
- if dir_ in dirs :
40
- dirs .remove (dir_ )
41
- # Iterate over a copy of ``dirs``, since mutating
42
- # a list while iterating over it can cause trouble.
43
- # (See https://github.com/pypa/pip/pull/462.)
44
- for dir_ in list (dirs ):
45
- if looks_like_virtual_env (os .path .join (root , dir_ )):
46
- dirs .remove (dir_ )
47
- # Also don't search through tests
48
- elif dir_ == 'test' or dir_ == 'tests' :
49
- dirs .remove (dir_ )
50
- candidates .extend (os .path .join (root , dir_ ) for dir_ in dirs )
51
- return [f for f in candidates if f .endswith ('.egg-info' )]
52
-
53
- def depth_of_directory (dir_ ):
54
- # type: (str) -> int
55
- return (
56
- dir_ .count (os .path .sep ) +
57
- (os .path .altsep and dir_ .count (os .path .altsep ) or 0 )
58
- )
59
-
60
- base = source_directory
61
- if is_editable :
62
- filenames = locate_editable_egg_info (base )
63
- else :
64
- base = os .path .join (base , 'pip-egg-info' )
65
- filenames = os .listdir (base )
23
+ filenames = [
24
+ f for f in os .listdir (directory ) if f .endswith (".egg-info" )
25
+ ]
66
26
67
27
if not filenames :
68
28
raise InstallationError (
69
- "Files/directories not found in {}" .format (base )
29
+ "No .egg-info directory found in {}" .format (directory )
70
30
)
71
31
72
- # If we have more than one match, we pick the toplevel one. This
73
- # can easily be the case if there is a dist folder which contains
74
- # an extracted tarball for testing purposes.
75
32
if len (filenames ) > 1 :
76
- filenames .sort (key = depth_of_directory )
33
+ raise InstallationError (
34
+ "More than one .egg-info directory found in {}" .format (
35
+ directory
36
+ )
37
+ )
77
38
78
- return os .path .join (base , filenames [0 ])
39
+ return os .path .join (directory , filenames [0 ])
79
40
80
41
81
42
def generate_metadata (
82
43
build_env , # type: BuildEnvironment
83
44
setup_py_path , # type: str
84
45
source_dir , # type: str
85
- editable , # type: bool
86
46
isolated , # type: bool
87
47
details , # type: str
88
48
):
@@ -96,14 +56,9 @@ def generate_metadata(
96
56
setup_py_path , details ,
97
57
)
98
58
99
- egg_info_dir = None # type: Optional[str]
100
- # For non-editable installs, don't put the .egg-info files at the root,
101
- # to avoid confusion due to the source code being considered an installed
102
- # egg.
103
- if not editable :
104
- egg_info_dir = os .path .join (source_dir , 'pip-egg-info' )
105
- # setuptools complains if the target directory does not exist.
106
- ensure_dir (egg_info_dir )
59
+ egg_info_dir = TempDirectory (
60
+ kind = "pip-egg-info" , globally_managed = True
61
+ ).path
107
62
108
63
args = make_setuptools_egg_info_args (
109
64
setup_py_path ,
@@ -119,4 +74,4 @@ def generate_metadata(
119
74
)
120
75
121
76
# Return the .egg-info directory.
122
- return _find_egg_info (source_dir , editable )
77
+ return _find_egg_info (egg_info_dir )
0 commit comments