File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -625,11 +625,11 @@ def __init__(
625625
626626 def _get_config_key (self , key : str ) -> Any :
627627 value : Any = self ._config
628- for part in f'tool.mesonpy .{ key } ' .split ('.' ):
628+ for part in f'tool.meson-python .{ key } ' .split ('.' ):
629629 if not isinstance (value , Mapping ):
630630 raise ConfigError (
631631 f'Found unexpected value in `{ part } ` when looking for '
632- f'config key `tool.mesonpy .{ key } ` (`{ value } `)'
632+ f'config key `tool.meson-python .{ key } ` (`{ value } `)'
633633 )
634634 value = value .get (part , {})
635635 return value
Original file line number Diff line number Diff line change 22build-backend = ' mesonpy'
33requires = [' meson-python' ]
44
5- [tool .mesonpy .args ]
5+ [tool .meson-python .args ]
66dist = [' config-dist' ]
77setup = [' config-setup' ]
88compile = [' config-compile' ]
You can’t perform that action at this time.
0 commit comments