On 2015-01-12 05:34:19, PERLANCAR wrote:
Show quoted text> On Mon Jan 12 03:32:03 2015, SREZIC wrote:
> > The test suite started to fail on 2015-01-07 and currently there are
> > only fail reports for this module. See
http://217.199.168.174/cgi-
> > bin/cpantestersmatrix.pl?dist=Complete-Util;reports=1#sl=7,1 for a
> > time-sorted overview of reports.
> >
> > Regards,
> > Slaven
>
> The failures were caused by a bug in Complete::Path 0.08 and
> Complete::Path 0.09+ have been released to fix it.
In this case, shouldn't Complete::Util make sure that the problematic Complete::Path version is upgraded? I.e. in your Makefile.PL:
my $min_Complete_Path_VERSION = 0;
if (eval { require Complete::Path; $Complete::Path::VERSION eq "0.08" }) {
$min_Complete_Path_VERSION = '0.09';
}
...
PREREQ_PM => { 'Complete::Path' => $min_Complete_Path_VERSION, ... }
And making a new Complete-Util release has a side effect of getting a completely green matrix again ;-)