From dc7ad4d84a4270053cc9f669353488243a2afd8c Mon Sep 17 00:00:00 2001 From: Tieqiong Zhang Date: Thu, 31 Jul 2025 16:27:29 -0400 Subject: [PATCH 1/2] update help message on scons --- SConstruct | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/SConstruct b/SConstruct index c195032..4fe3c8c 100644 --- a/SConstruct +++ b/SConstruct @@ -3,15 +3,18 @@ MY_SCONS_HELP = """\ SCons rules for compiling and installing pyobjcryst. -SCons build is much faster when run with parallel jobs (-j4). -Usage: scons [target] [var=value] -Targets: +Compile and install the pyobjcryst Python extension. +For faster builds, run with parallel jobs, e.g.: + scons -j4 + +Usage: + scons [target] [var=value] -module build Python extension module _pyobjcryst.so [default] -install install to default Python package location -develop copy extension module to src/pyobjcryst/ directory -test execute unit tests +Targets: + (default) Build the Python extension module `_pyobjcryst.so` (or `.pyd` on Windows) + dev install extension module into `src/pyobjcryst/` (development mode) + test Run pytest on the package with the installed extension Build configuration variables: %s From e9b35f781d94a087872417dfd093d9ed9263c5a7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 20:28:58 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit hooks --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 4fe3c8c..a525990 100644 --- a/SConstruct +++ b/SConstruct @@ -4,11 +4,11 @@ MY_SCONS_HELP = """\ SCons rules for compiling and installing pyobjcryst. -Compile and install the pyobjcryst Python extension. +Compile and install the pyobjcryst Python extension. For faster builds, run with parallel jobs, e.g.: scons -j4 -Usage: +Usage: scons [target] [var=value] Targets: