Skip to content

Commit

Permalink
Merge pull request #17 from replit/th-pip-no-isolate-2
Browse files Browse the repository at this point in the history
change the flag name to detach it from user site behavior
  • Loading branch information
airportyh authored Aug 1, 2023
2 parents 58982ce + 9b11727 commit e236eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/utils/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def pip_install(
"--disable-pip-version-check"
]

if os.getenv("POETRY_USE_USER_SITE") != "1":
if os.getenv("POETRY_PIP_NO_ISOLATE") != "1":
args.append("--isolated")

args.append("--no-input")
Expand Down

0 comments on commit e236eba

Please sign in to comment.