aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.travis.sh2
-rw-r--r--README.md2
-rw-r--r--python/README.md2
3 files changed, 3 insertions, 3 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
;;
diff --git a/README.md b/README.md
index e9c1f0e..7a63243 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ See [Premake5](https://premake.github.io/)
The basic commands to build, test, and install the Python module are:
- $ python setup.py build_ext test
+ $ python setup.py build test
$ python setup.py install
See the [Python readme](python/README.md) for more details.
diff --git a/python/README.md b/python/README.md
index 5b962d0..6f5ce24 100644
--- a/python/README.md
+++ b/python/README.md
@@ -7,7 +7,7 @@ This directory contains the code for the Python `brotli` module,
To build the module, execute the following from the root project
directory:
- $ python setup.py build_ext
+ $ python setup.py build
To test the module, execute the following from the root project
directory: