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/02/19 16:46:41 UTC

[tinkerpop] 01/02: fix travis

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

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

commit 4cc7c64d3821c2394a2de922e82fde291549b71a
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Feb 19 09:34:15 2020 -0500

    fix travis
---
 gremlin-python/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index bc56e38..dab1c9b 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -310,6 +310,19 @@ limitations under the License.
                                         <copy todir="${project.build.directory}/python-packaged">
                                             <fileset dir="src/main/jython"/>
                                         </copy>
+                                        <!-- print versions of python and virtualenv -->
+                                        <exec dir="${project.build.directory}/python2" executable="python2"
+                                              failonerror="true">
+                                            <arg line="--version"/>
+                                        </exec>
+                                        <exec dir="${project.build.directory}/python2" executable="python3"
+                                              failonerror="true">
+                                            <arg line="--version"/>
+                                        </exec>
+                                        <exec dir="${project.build.directory}/python2" executable="virtualenv"
+                                              failonerror="true">
+                                            <arg line="--version"/>
+                                        </exec>
                                         <exec dir="${project.build.directory}/python2" executable="virtualenv"
                                               failonerror="true">
                                             <arg line="--python=python2 env"/>