3848: Stop manually tagging Python builds.
authorBrett Smith <brettcsmith@brettcsmith.org>
Mon, 29 Sep 2014 16:25:53 +0000 (12:25 -0400)
committerBrett Smith <brettcsmith@brettcsmith.org>
Mon, 29 Sep 2014 16:25:53 +0000 (12:25 -0400)
This is now done in setup.py.  Refs #3848.

jenkins/run-tests.sh

index 2c25bb753842e0907670a17f979ff0220e6b07e9..96fc4b7badc3f4a171cc7d93ece5c9eb9a8db17c 100755 (executable)
@@ -275,14 +275,14 @@ install_python_sdk() {
     # keepproxy).
 
     cd "$WORKSPACE/sdk/python" \
-        && python setup.py egg_info -b ".$(git log --first-parent --format=format:%ci.%h -n1 . | tr -dc 0-9a-f. | cut -c 1-14,19-)" sdist rotate --keep=1 --match .tar.gz \
+        && python setup.py sdist rotate --keep=1 --match .tar.gz \
         && pip install dist/arvados-python-client-0.1.*.tar.gz
 }
 do_install python_sdk
 
 install_fuse() {
     cd "$WORKSPACE/services/fuse" \
-        && python setup.py egg_info -b ".$(git log --first-parent --format=format:%ci.%h -n1 . | tr -dc 0-9a-f. | cut -c 1-14,19-)" sdist rotate --keep=1 --match .tar.gz \
+        && python setup.py sdist rotate --keep=1 --match .tar.gz \
         && pip install dist/arvados_fuse-0.1.*.tar.gz
 }
 do_install fuse