Skip to content

Commit 713df0c

Browse files
committed
Don't cast to Path
1 parent 80cc472 commit 713df0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipenv/vendor/requirementslib/models/setup_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ def run_setup(script_path, egg_base=None):
11321132
if egg_base:
11331133
args += ["--egg-base", egg_base]
11341134

1135-
python = Path(os.environ.get("PIP_PYTHON_PATH", sys.executable))
1135+
python = os.environ.get("PIP_PYTHON_PATH", sys.executable)
11361136
sp.run(
11371137
[python, "setup.py"] + args,
11381138
capture_output=True,

0 commit comments

Comments
 (0)