Skip to content

Commit ad764f5

Browse files
committed
Culebra cmd line functionality appears broken as of v14+ (mac) dtmilano#240
1 parent e1842d7 commit ad764f5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

publish

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#! /bin/bash
22

3+
set -e
34
eval $(grep version setup.py | sed 's/,$//')
45
tag="v$version"
56
git tag "$tag"
67
git push --tags
7-
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
89
twine upload dist/androidviewclient-${version}-*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
setup(name='androidviewclient',
6-
version='15.1.1',
6+
version='15.1.2',
77
description='''AndroidViewClient is a 100% pure python library and tools
88
that simplifies test script creation providing higher level
99
operations and the ability of obtaining the tree of Views present at

0 commit comments

Comments
 (0)