Skip to content

Commit 80c3b96

Browse files
committed
Textual: "locally built" rather than "built"
As per @sbidoul's remark
1 parent d57c5dd commit 80c3b96

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/pip/_internal/commands/cache.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ def get_cache_info(self, options: Values, args: List[Any]) -> None:
105105
Package index page cache location: {http_cache_location}
106106
Package index page cache size: {http_cache_size}
107107
Number of HTTP files: {num_http_files}
108-
Built wheels location: {wheels_cache_location}
109-
Built wheels size: {wheels_cache_size}
110-
Number of built wheels: {package_count}
108+
Locally built wheels location: {wheels_cache_location}
109+
Locally built wheels size: {wheels_cache_size}
110+
Number of locally built wheels: {package_count}
111111
"""
112112
)
113113
.format(

tests/functional/test_cache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ def test_cache_info(
210210
result = script.pip("cache", "info")
211211

212212
assert f"Package index page cache location: {http_cache_dir}" in result.stdout
213-
assert f"Built wheels location: {wheel_cache_dir}" in result.stdout
213+
assert f"Locally built wheels location: {wheel_cache_dir}" in result.stdout
214214
num_wheels = len(wheel_cache_files)
215-
assert f"Number of built wheels: {num_wheels}" in result.stdout
215+
assert f"Number of locally built wheels: {num_wheels}" in result.stdout
216216

217217

218218
@pytest.mark.usefixtures("populate_wheel_cache")

0 commit comments

Comments
 (0)