Skip to content

Commit 9fb40d2

Browse files
authored
Drop --isolated from pip arguments (#17)
1 parent c09d0c6 commit 9fb40d2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,3 +371,4 @@ dmypy.json
371371

372372
# Cython debug symbols
373373
cython_debug/
374+
.idea

install-poetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def python(self, *args, **kwargs) -> subprocess.CompletedProcess:
346346
return self.run(self._python, *args, **kwargs)
347347

348348
def pip(self, *args, **kwargs) -> subprocess.CompletedProcess:
349-
return self.python("-m", "pip", "--isolated", *args, **kwargs)
349+
return self.python("-m", "pip", *args, **kwargs)
350350

351351

352352
class Cursor:

0 commit comments

Comments
 (0)