You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/03/25 17:29:42 UTC

[tinkerpop] 01/03: Bump Gremlin Console integration tests to use Python 3

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

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

commit acd5ec473d803a2ce3c4014d44a5dfef98457c71
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Mar 25 13:23:20 2020 -0400

    Bump Gremlin Console integration tests to use Python 3
    
    Getting some failures on Python 2 which seem to be related to test dependency upgrades that require Python 3. Seems related to zipp specifically. CTR
---
 gremlin-console/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml
index b656c4a..7f058f1 100644
--- a/gremlin-console/pom.xml
+++ b/gremlin-console/pom.xml
@@ -346,7 +346,7 @@ limitations under the License.
                                         </copy>
                                         <exec dir="${project.build.directory}/python" executable="virtualenv"
                                               failonerror="true">
-                                            <arg line="--python=python env"/>
+                                            <arg line="--python=python3 env"/>
                                         </exec>
                                     </tasks>
                                 </configuration>