You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2016/09/26 17:26:34 UTC

[08/21] tinkerpop git commit: Combined wheel/tar.gz assembly commands to one

Combined wheel/tar.gz assembly commands to one

This was an important fix for SNAPSHOT deployments. When executed as two commands you would get two different timestamps on the artifacts: one for whl and one for tar.gz. When the went to pypi, they woudl show up as two separate versions CTR


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

Branch: refs/heads/TINKERPOP-1458
Commit: 9ff15d6dfb6b8934b9ab66108a26f14317097f24
Parents: 3e49532
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Sep 22 16:19:07 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Sep 22 16:24:44 2016 -0400

----------------------------------------------------------------------
 gremlin-python/pom.xml | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/9ff15d6d/gremlin-python/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index 76afe60..24f1ca4 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -426,13 +426,7 @@
                                               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"/>
+                                            <arg line="setup.py sdist bdist_wheel"/>
                                         </exec>
                                     </target>
                                 </configuration>