(self, env, build_dir=".")
| 1201 | filename, *self.cython_args, _env=cyenv) |
| 1202 | |
| 1203 | def cythonize_build(self, env, build_dir="."): |
| 1204 | if not self.cythonize: |
| 1205 | info('Running cython cancelled per recipe setting') |
| 1206 | return |
| 1207 | info('Running cython where appropriate') |
| 1208 | for root, dirnames, filenames in walk("."): |
| 1209 | for filename in fnmatch.filter(filenames, "*.pyx"): |
| 1210 | self.cythonize_file(env, build_dir, join(root, filename)) |
| 1211 | |
| 1212 | def get_recipe_env(self, arch, with_flags_in_cc=True): |
| 1213 | env = super().get_recipe_env(arch, with_flags_in_cc) |
no test coverage detected