You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/09/01 15:16:57 UTC

tinkerpop git commit: fixed up the gremlin-python pom.xml to set PYTHONPATH to empty and just use python instead of python2.

Repository: tinkerpop
Updated Branches:
  refs/heads/master 11bd73e4e -> c7f4ce0a4


fixed up the gremlin-python pom.xml to set PYTHONPATH to empty and just use python instead of python2.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c7f4ce0a
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c7f4ce0a
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/c7f4ce0a

Branch: refs/heads/master
Commit: c7f4ce0a4052bb631e48ed461d124e17d13799c7
Parents: 11bd73e
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Sep 1 09:16:51 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Sep 1 09:16:51 2016 -0600

----------------------------------------------------------------------
 gremlin-python/pom.xml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/c7f4ce0a/gremlin-python/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index 0b1b8b1..24d1215 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -399,7 +399,7 @@
                                         </copy>
                                         <exec dir="${project.build.directory}/python" executable="virtualenv"
                                               failonerror="true">
-                                            <arg line="--python=python2 env"/>
+                                            <arg line="--python=python env"/>
                                         </exec>
                                         <exec dir="${project.build.directory}/python" executable="env/bin/pip"
                                               failonerror="true">
@@ -407,7 +407,7 @@
                                         </exec>
                                         <exec dir="${project.build.directory}/python-packaged" executable="virtualenv"
                                               failonerror="true">
-                                            <arg line="--python=python2 env"/>
+                                            <arg line="--python=python env"/>
                                         </exec>
                                         <exec dir="${project.build.directory}/python-packaged" executable="env/bin/pip"
                                               failonerror="true">
@@ -430,6 +430,7 @@
                                     <target>
                                         <exec executable="env/bin/python" dir="${project.build.directory}/python"
                                               failonerror="true">
+                                            <env key="PYTHONPATH" value=""/>
                                             <arg line="setup.py build --build-lib ${project.build.testOutputDirectory}/Lib"/>
                                         </exec>
                                     </target>
@@ -452,11 +453,13 @@
                                         <exec executable="env/bin/python" dir="${project.build.directory}/python-packaged"
                                               failonerror="true">
                                             <env key="VERSION" value="${project.version}"/>
+                                            <env key="PYTHONPATH" value=""/>
                                             <arg line="setup.py sdist"/>
                                         </exec>
                                         <exec executable="env/bin/python" dir="${project.build.directory}/python-packaged"
                                               failonerror="true">
                                             <env key="VERSION" value="${project.version}"/>
+                                            <env key="PYTHONPATH" value=""/>
                                             <arg line="setup.py bdist_wheel"/>
                                         </exec>
                                     </target>
@@ -478,6 +481,7 @@
                                     <target>
                                         <exec executable="env/bin/python" dir="${project.build.directory}/python"
                                               failonerror="true">
+                                            <env key="PYTHONPATH" value=""/>
                                             <arg line="setup.py test"/>
                                         </exec>
                                     </target>