Skip to content

Commit 0d1923d

Browse files
committed
Fix a comment formatting issue in the setup script
1 parent b930beb commit 0d1923d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def run(self, *args, **kwargs) -> None:
2222
subprocess.check_call(('make', '-C', self.build_lib, '-f', os.path.realpath('Makefile')))
2323

2424
class BuildCommand(setuptools.command.build.build):
25-
sub_commands = [ ('build_make', None) ] + setuptools.command.build.build.sub_commands # Makes the `build_make` command a sub-command of the `build_command`, which has the effect of the former being invoked when the latter is invoked (which is invoked in turn when the wheel must be built, through the `bdist_wheel` command)
25+
sub_commands = [ ('build_make', None) ] + setuptools.command.build.build.sub_commands # Makes the `build_make` command a sub-command of the `build` command, which has the effect of the former being invoked when the latter is invoked (which is invoked in turn when the wheel must be built, through the `bdist_wheel` command)
2626

2727
setup(cmdclass={ 'build': BuildCommand, 'build_make': MakeCommand })

0 commit comments

Comments
 (0)