aboutsummaryrefslogtreecommitdiff
path: root/.travis.sh
diff options
context:
space:
mode:
authorAlex Nicksay <nicksay@gmail.com>2016-10-31 07:58:45 -0400
committerEugene Kliuchnikov <eustas@google.com>2016-10-31 12:58:45 +0100
commit9203765492fa4fceef8e27906ac5728c21d2966d (patch)
tree4448bd7b3551f6d5c2a92a05355c0203b7961535 /.travis.sh
parent1a8ee40de9bee8b20b19309e49af00d220c023b4 (diff)
downloadbrotli-9203765492fa4fceef8e27906ac5728c21d2966d.tar.gz
Python: Use "build" instead of "build_ext" in scripts (#460)
Previously, the Python package consisted of a single extension module, so `build_ext` was sufficient. Now, the package contains a native module and an extension module, so both `build_py` and `build_ext` are required. Instead, run `build`, which calls both `build_py` and `build_ext` automatically.
Diffstat (limited to '.travis.sh')
-rwxr-xr-x.travis.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.sh b/.travis.sh
index 1030dad..83d11f5 100755
--- a/.travis.sh
+++ b/.travis.sh
@@ -39,7 +39,7 @@ case "$1" in
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
source venv/bin/activate
fi
- python setup.py build_ext test
+ python setup.py build test
;;
esac
;;