Skip to content
Merged

Fix CI #13844

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/lib/venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _legacy_virtualenv(self) -> bool:
return int(_virtualenv.__version__.split(".", 1)[0]) < 20

def __update_paths_legacy(self) -> None:
home, lib, inc, bin = _virtualenv.path_locations(self.location)
home, lib, inc, bin = _virtualenv.path_locations(self.location) # type: ignore[attr-defined]
self.bin = Path(bin)
self.site = Path(lib) / "site-packages"
# Workaround for https://github.com/pypa/virtualenv/issues/306
Expand Down