aboutsummaryrefslogtreecommitdiff
path: root/README.md
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 /README.md
parent1a8ee40de9bee8b20b19309e49af00d220c023b4 (diff)
downloadbrotli-9203765492fa4fceef8e27906ac5728c21d2966d.zip
brotli-9203765492fa4fceef8e27906ac5728c21d2966d.tar.gz
brotli-9203765492fa4fceef8e27906ac5728c21d2966d.tar.bz2
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 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
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.