Skip to content

Commit 9cbe8fb

Browse files
authored
Merge pull request #7978 from sbidoul/remove-pip-egg-info-sbi
Generate legacy metadata in temporary directory
2 parents 81f1054 + 030578e commit 9cbe8fb

File tree

3 files changed

+21
-69
lines changed

3 files changed

+21
-69
lines changed

src/pip/_internal/operations/build/metadata_legacy.py

+18-63
Original file line numberDiff line numberDiff line change
@@ -5,84 +5,44 @@
55
import os
66

77
from pip._internal.exceptions import InstallationError
8-
from pip._internal.utils.misc import ensure_dir
98
from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args
109
from pip._internal.utils.subprocess import call_subprocess
10+
from pip._internal.utils.temp_dir import TempDirectory
1111
from pip._internal.utils.typing import MYPY_CHECK_RUNNING
12-
from pip._internal.vcs import vcs
1312

1413
if MYPY_CHECK_RUNNING:
15-
from typing import List, Optional
16-
1714
from pip._internal.build_env import BuildEnvironment
1815

1916
logger = logging.getLogger(__name__)
2017

2118

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`.
2522
"""
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+
]
6626

6727
if not filenames:
6828
raise InstallationError(
69-
"Files/directories not found in {}".format(base)
29+
"No .egg-info directory found in {}".format(directory)
7030
)
7131

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.
7532
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+
)
7738

78-
return os.path.join(base, filenames[0])
39+
return os.path.join(directory, filenames[0])
7940

8041

8142
def generate_metadata(
8243
build_env, # type: BuildEnvironment
8344
setup_py_path, # type: str
8445
source_dir, # type: str
85-
editable, # type: bool
8646
isolated, # type: bool
8747
details, # type: str
8848
):
@@ -96,14 +56,9 @@ def generate_metadata(
9656
setup_py_path, details,
9757
)
9858

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
10762

10863
args = make_setuptools_egg_info_args(
10964
setup_py_path,
@@ -119,4 +74,4 @@ def generate_metadata(
11974
)
12075

12176
# Return the .egg-info directory.
122-
return _find_egg_info(source_dir, editable)
77+
return _find_egg_info(egg_info_dir)

src/pip/_internal/req/req_install.py

-3
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,6 @@ def _generate_metadata(self):
517517
build_env=self.build_env,
518518
setup_py_path=self.setup_py_path,
519519
source_dir=self.unpacked_source_directory,
520-
editable=self.editable,
521520
isolated=self.isolated,
522521
details=self.name or "from {}".format(self.link)
523522
)
@@ -730,8 +729,6 @@ def archive(self, build_dir):
730729
os.path.abspath(self.unpacked_source_directory)
731730
)
732731
for dirpath, dirnames, filenames in os.walk(dir):
733-
if 'pip-egg-info' in dirnames:
734-
dirnames.remove('pip-egg-info')
735732
for dirname in dirnames:
736733
dir_arcname = self._get_archive_name(
737734
dirname, parentdir=dirpath, rootdir=dir,

src/pip/_internal/utils/setuptools_build.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ def make_setuptools_egg_info_args(
121121
no_user_config, # type: bool
122122
):
123123
# type: (...) -> List[str]
124-
args = make_setuptools_shim_args(setup_py_path)
125-
if no_user_config:
126-
args += ["--no-user-cfg"]
124+
args = make_setuptools_shim_args(
125+
setup_py_path, no_user_config=no_user_config
126+
)
127127

128128
args += ["egg_info"]
129129

0 commit comments

Comments
 (0)