Subject: | Requirement of 5.8.8 is too high |
The module requires 5.8.8 in XLSX.pm, which isn't needed.
I lowered it to 5.8.5, and that worked fine.
Test::MinimumVersion shows that 5.6.0 is the minimum you support
$ cat tmv.pl
use Test::MinimumVersion;
all_minimum_version_ok (5.006000, { paths => [ "t", "lib",
"Makefile.PL" ]});
$ perl tmv.pl
1..6
ok 1 - t/1_____loreyna126.t
ok 2 - t/0____________use.t
ok 3 - lib/Spreadsheet/XLSX.pm
ok 4 - lib/Spreadsheet/XLSX/Fmt2007.pm
ok 5 - lib/Spreadsheet/XLSX/Utility2007.pm
ok 6 - Makefile.PL
With 5.005000 you get
not ok 1 - t/1_____loreyna126.t
# Failed test 't/1_____loreyna126.t'
# at /pro/lib/perl5/site_perl/5.10.0/Test/MinimumVersion.pm line 139.
# t/1_____loreyna126.t requires 5.006 due to syntax
Please do not require such new versions without documented reasons
/me now off to include this in Spreadsheet::Read support