Subject: | Non-numeric dependencies disallow installation |
Dependencies in Build.PL (and META.yaml?) are specified in a way that
breaks current (>=0.36) Module::Build, e.g.
'YAML' => '>= 0.35',
causes the error:
Prereq '>= 0.35' for 'YAML' is not supported by
Module::Build::Compat
From Module::Build changelog:
- Module::Build::Compat will now die with an error if advanced,
non-numeric prerequisites are given, as these are not supported by
ExtUtils::MakeMaker in PREREQ_PM [David Golden]
The solution seems to change '>= 0.35' to simple '0.35', as '>=' is
implied.