From c9c54602ed740a441d675fca90100b3e2d4e0581 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 8 Apr 2018 18:42:21 +0100 Subject: [PATCH] Correct comment --- cibuildwheel/util.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index 763d9cf2..7cc075a2 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -6,10 +6,8 @@ def prepare_command(command, project): ''' Preprocesses a command by expanding variables like {project}. - For example, used for the before_build option, where the user would - like to run a command like `python setup.py test`. If the command should run on - Python 3, the user could write `{python} setup.py test`. This command would expand - it out to python2 or python3 as appropriate. + For example, used in the test_command option, to specify the path to the + tests directory. ''' if '{python}' in command or '{pip}' in command: warnings.warn("'{python}' and '{pip}' are no longer needed, and have been deprecated. Simply use 'python' or 'pip' instead.",