Skip to content

Commit

Permalink
feat(task): allow to use system-site-packages for python venv creation
Browse files Browse the repository at this point in the history
close #615
  • Loading branch information
tchiotludo committed May 26, 2022
1 parent 8e60a0d commit 18ccc98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected String virtualEnvCommand(RunContext runContext, List<String> requireme
}

renderer.addAll(Arrays.asList(
this.pythonPath + " -m venv " + workingDirectory + " > /dev/null",
this.pythonPath + " -m venv --system-site-packages " + workingDirectory + " > /dev/null",
"./bin/pip install pip --upgrade > /dev/null",
requirementsAsString
));
Expand Down

0 comments on commit 18ccc98

Please sign in to comment.