Skip to content

Commit 66d793e

Browse files
authored
fix: Import fs_is_case_sensitive absolutely in py_info.py (#2960)
1 parent dad9369 commit 66d793e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

docs/changelog/2774.feature.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Ensure python3.exe and python3 on Windows for Python 3. - by :user:`esafak`.
1+
Ensure python3.exe and python3 on Windows for Python 3 - by :user:`esafak`.

docs/changelog/2944.bugfix.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Replaced direct references to tcl/tk library paths with getattr. By :user:`esafak`
1+
Replaced direct references to tcl/tk library paths with getattr - by :user:`esafak`

docs/changelog/2955.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Restore absolute import of fs_is_case_sensitive - by :user:`esafak`.

src/virtualenv/discovery/py_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ def _possible_base(self):
660660
lower = base.lower()
661661
yield lower
662662

663-
from .info import fs_is_case_sensitive # noqa: PLC0415
663+
from virtualenv.discovery.info import fs_is_case_sensitive # noqa: PLC0415
664664

665665
if fs_is_case_sensitive():
666666
if base != lower:

0 commit comments

Comments
 (0)