This is an automated email from the ASF dual-hosted git repository.

heejong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 711c74f  [BEAM-13716] Clear before creating a new virtual environment 
in setupVirtualenv
     new 0e0808f  Merge pull request #16591 from ihji/BEAM-13716
711c74f is described below

commit 711c74f0cb33aeb496de145ee9d3a9995118d2a4
Author: Heejong Lee <heej...@gmail.com>
AuthorDate: Fri Jan 21 17:07:41 2022 -0800

    [BEAM-13716] Clear before creating a new virtual environment in 
setupVirtualenv
---
 buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy 
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index d551554..bc80ac9 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -2350,6 +2350,7 @@ class BeamModulePlugin implements Plugin<Project> {
             "python${project.ext.pythonVersion}",
             "-m",
             "venv",
+            "--clear",
             "${project.ext.envdir}",
           ]
           project.exec { commandLine virtualenvCmd }

Reply via email to