aboutsummaryrefslogtreecommitdiff
path: root/python
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 /python
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 'python')
-rw-r--r--python/README.md2
1 files changed, 1 insertions, 1 deletions
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: