Skip to content
Merged
Show file tree
Hide file tree
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 docs/changelog/2774.feature.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Ensure python3.exe and python3 on Windows for Python 3. - by :user:`esafak`.
Ensure python3.exe and python3 on Windows for Python 3 - by :user:`esafak`.
2 changes: 1 addition & 1 deletion docs/changelog/2944.bugfix.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replaced direct references to tcl/tk library paths with getattr. By :user:`esafak`
Replaced direct references to tcl/tk library paths with getattr - by :user:`esafak`
1 change: 1 addition & 0 deletions docs/changelog/2955.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Restore absolute import of fs_is_case_sensitive - by :user:`esafak`.
2 changes: 1 addition & 1 deletion src/virtualenv/discovery/py_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def _possible_base(self):
lower = base.lower()
yield lower

from .info import fs_is_case_sensitive # noqa: PLC0415
from virtualenv.discovery.info import fs_is_case_sensitive # noqa: PLC0415

if fs_is_case_sensitive():
if base != lower:
Expand Down
Loading