Subject: | fails with older versions of Text::Roman |
I suspect that this patch would fix almost all of the failures reported by cpantesters.
diff --git a/Makefile.PL b/Makefile.PL
index 81f4c87..677e19a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,6 +8,6 @@ WriteMakefile(
PREREQ_PM => {
Test::Simple => 0,
Lingua::EN::Numericalize => 0,
- Text::Roman => 0,
+ Text::Roman => "3.4",
}
);