[Moose-commits] r7833 - Mouse/trunk
sartak at code2.0beta.co.uk
sartak at code2.0beta.co.uk
Sat Mar 7 00:02:08 GMT 2009
Author: sartak
Date: 2009-03-06 16:02:07 -0800 (Fri, 06 Mar 2009)
New Revision: 7833
Modified:
Mouse/trunk/Makefile.PL
Log:
Just always depend on Scalar::Util 1.14
Modified: Mouse/trunk/Makefile.PL
===================================================================
--- Mouse/trunk/Makefile.PL 2009-03-06 21:34:54 UTC (rev 7832)
+++ Mouse/trunk/Makefile.PL 2009-03-07 00:02:07 UTC (rev 7833)
@@ -5,11 +5,9 @@
tests 't/*.t t/*/*.t';
-if ($] < 5.008004) {
- # Scalar::Util < 1.14 has a bug.
- # > Fixed looks_like_number(undef) to return false for perl >= 5.009002
- requires 'Scalar::Util' => 1.14;
-}
+# Scalar::Util < 1.14 has a bug.
+# > Fixed looks_like_number(undef) to return false for perl >= 5.009002
+requires 'Scalar::Util' => 1.14;
build_requires 'Test::Exception';
build_requires 'Test::More';
More information about the Moose-commits
mailing list