Skip to content

Commit ca67e45

Browse files
committed
setup.py: Remove deprecated --no-site-packages option for virtualenv
This option has been deprecated for over 8 years, its behavior the default since then. Newer versions of virtualenv now abort with an error if the option is given.
1 parent 3b7b856 commit ca67e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def load_fixtures(self):
9999

100100
class Installer(BaseInstaller):
101101
def install_virtualenv(self, python_interpreter):
102-
self._run_bash("virtualenv -p " + python_interpreter + " --no-site-packages " + self.env)
102+
self._run_bash("virtualenv -p " + python_interpreter + " " + self.env)
103103

104104
def install_requirements(self):
105105
self._run_bash(self.env + "/bin/pip install -r requirements.txt")

0 commit comments

Comments
 (0)