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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') 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. -- cgit v1.1