(self)
| 349 | ''' |
| 350 | |
| 351 | def finalize_options(self): |
| 352 | self.swig_cpp = True |
| 353 | print('build temp', self.build_temp) |
| 354 | print('build lib', self.build_lib) |
| 355 | super(custom_build_ext, self).finalize_options() |
| 356 | self.swig_opts = '-py3 -outdir {}/singa/'.format(self.build_lib).split() |
| 357 | print('build temp', self.build_temp) |
| 358 | print('build lib', self.build_lib) |
| 359 | |
| 360 | def build_extensions(self): |
| 361 | options = prepare_extension_options() |
nothing calls this directly
no test coverage detected