Skip to content

Commit 82f6d3a

Browse files
committed
According to pip docstring it will use pkg_resources on < python 3.11 but can be forced with this env var.
1 parent 8197b24 commit 82f6d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipenv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Load patched pip instead of system pip
1313
os.environ["PIP_DISABLE_PIP_VERSION_CHECK"] = "1"
14-
os.environ["_PIP_USE_IMPORTLIB_METADATA"] = "1"
14+
os.environ["PIP_USE_IMPORTLIB_METADATA"] = "1"
1515

1616

1717
def _ensure_modules():

0 commit comments

Comments
 (0)