mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-23 06:20:57 -05:00
Drop --isolated from pip arguments (#17)
This commit is contained in:
parent
c09d0c66e7
commit
9fb40d244a
2 changed files with 2 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -371,3 +371,4 @@ dmypy.json
|
||||||
|
|
||||||
# Cython debug symbols
|
# Cython debug symbols
|
||||||
cython_debug/
|
cython_debug/
|
||||||
|
.idea
|
||||||
|
|
|
@ -346,7 +346,7 @@ class VirtualEnvironment:
|
||||||
return self.run(self._python, *args, **kwargs)
|
return self.run(self._python, *args, **kwargs)
|
||||||
|
|
||||||
def pip(self, *args, **kwargs) -> subprocess.CompletedProcess:
|
def pip(self, *args, **kwargs) -> subprocess.CompletedProcess:
|
||||||
return self.python("-m", "pip", "--isolated", *args, **kwargs)
|
return self.python("-m", "pip", *args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
class Cursor:
|
class Cursor:
|
||||||
|
|
Loading…
Reference in a new issue