diff --git a/docs/changelog/2774.feature.rst b/docs/changelog/2774.feature.rst index 7821b80cf..3800244ac 100644 --- a/docs/changelog/2774.feature.rst +++ b/docs/changelog/2774.feature.rst @@ -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`. diff --git a/docs/changelog/2944.bugfix.rst b/docs/changelog/2944.bugfix.rst index 21ba0d22e..6cd6408d9 100644 --- a/docs/changelog/2944.bugfix.rst +++ b/docs/changelog/2944.bugfix.rst @@ -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` diff --git a/docs/changelog/2955.bugfix.rst b/docs/changelog/2955.bugfix.rst new file mode 100644 index 000000000..b5b935a49 --- /dev/null +++ b/docs/changelog/2955.bugfix.rst @@ -0,0 +1 @@ +Restore absolute import of fs_is_case_sensitive - by :user:`esafak`. diff --git a/src/virtualenv/discovery/py_info.py b/src/virtualenv/discovery/py_info.py index 797f88bdb..8ae456966 100644 --- a/src/virtualenv/discovery/py_info.py +++ b/src/virtualenv/discovery/py_info.py @@ -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: