Skip to content

Commit ec11650

Browse files
committed
ci: Make sure wheel builds on macOS start from a clean slate
1 parent 2d0b427 commit ec11650

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/travis-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
5757
done
5858

5959
elif [ "${TRAVIS_OS_NAME}" == "osx" ]; then
60-
make -C "${_root}"
60+
make clean && make -C "${_root}"
6161
pip wheel "${_root}" -w "${_root}/dist/"
6262

6363
pip install ${PYMODULE} --no-index -f "file:///${_root}/dist"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from setuptools.command.sdist import sdist as sdist
2424

2525

26-
VERSION = '0.7.1'
26+
VERSION = '0.7.2'
2727
CFLAGS = ['-O2']
2828
LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')
2929
LIBUV_BUILD_DIR = os.path.join(os.path.dirname(__file__), 'build', 'libuv')

0 commit comments

Comments
 (0)