We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1842d7 commit ad764f5Copy full SHA for ad764f5
2 files changed
publish
@@ -1,8 +1,9 @@
1
#! /bin/bash
2
3
+set -e
4
eval $(grep version setup.py | sed 's/,$//')
5
tag="v$version"
6
git tag "$tag"
7
git push --tags
-python setup.py bdist_egg bdist_wheel --universal
8
+python2.7 setup.py clean build --executable='/usr/bin/env python2.7' bdist_egg bdist_wheel --universal
9
twine upload dist/androidviewclient-${version}-*
setup.py
@@ -3,7 +3,7 @@
from setuptools import setup, find_packages
setup(name='androidviewclient',
- version='15.1.1',
+ version='15.1.2',
description='''AndroidViewClient is a 100% pure python library and tools
that simplifies test script creation providing higher level
operations and the ability of obtaining the tree of Views present at
0 commit comments