Subject: | List::Util 1.33 required |
There's still one problem: your module is using the functions any() and pairwise() from List::Util, but these were added in later versions of List::Util. So by reading https://metacpan.org/changes/distribution/Scalar-List-Utils it seems that you should change your List::Util line PREREQ_PM to
'List::Util' => 1.33, # because of pairwise, any
This looks like the last requirements problem, hopefully.
Regards,
Slaven