From 9203765492fa4fceef8e27906ac5728c21d2966d Mon Sep 17 00:00:00 2001 From: Alex Nicksay Date: Mon, 31 Oct 2016 07:58:45 -0400 Subject: 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. --- python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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: -- cgit v1.1