Skip to content

Commit

Permalink
Cython: check for files
Browse files Browse the repository at this point in the history
Pushing in new branch to get it up to GH so I can pull it down to a
machine which has an old version of Cython
  • Loading branch information
amcn committed Feb 20, 2024
1 parent 28f23e3 commit c5ceed5
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions mesonbuild/modules/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,28 @@ def extension_module_method(self, args: T.Tuple[str, T.List[BuildTargetSource]],
kwargs['link_args'] = new_link_args

cython_compiler = next((c for c in compilers.values() if c.get_id() == 'cython'), None)
if cython_compiler is not None and mesonlib.version_compare(cython_compiler.version, '< 3.0.0'):
mlog.warning(f'Limited API not supported by Cython versions < 3.0.0 (detected: {cython_compiler.version})', location=self.current_node)
if cython_compiler is not None:
# Determine if any of the supplied source files are Cython source.
cython_suffixes = cython_compiler.file_suffixes
def has_cython_files(args: T.List[BuildTargetSource]):
for arg in args:
if isinstance(arg, StructuredSources):
if has_cython_files(arg.as_list()):
return True
continue
if isinstance(arg, GeneratedList):
if has_cython_files(arg.get_outputs()):
return True
continue
if isinstance(arg, mesonlib.File):
arg = arg.fname
suffix = os.path.splitext(arg)[1][1:].lower()
if suffix in cython_suffixes:
return True
return False

if mesonlib.version_compare(cython_compiler.version, '< 3.0.0') and has_cython_files(args[1]):
raise mesonlib.MesonException(f'Python Limited API not supported by Cython versions < 3.0.0 (detected {cython_compiler.version})')

kwargs['dependencies'] = new_deps

Expand Down

0 comments on commit c5ceed5

Please sign in to comment.