1
0
Fork 0
mirror of https://github.com/python-poetry/install.python-poetry.org.git synced 2024-07-07 17:16:30 +00:00

Drop --isolated from pip arguments (#17)

This commit is contained in:
Bartosz Sokorski 2022-06-23 16:08:48 +02:00 committed by GitHub
parent c09d0c66e7
commit 9fb40d244a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -371,3 +371,4 @@ dmypy.json
# Cython debug symbols
cython_debug/
.idea

View file

@ -346,7 +346,7 @@ class VirtualEnvironment:
return self.run(self._python, *args, **kwargs)
def pip(self, *args, **kwargs) -> subprocess.CompletedProcess:
return self.python("-m", "pip", "--isolated", *args, **kwargs)
return self.python("-m", "pip", *args, **kwargs)
class Cursor: