Skip to content

Commit 7c67759

Browse files
committed
Specify minimal Test2::V0 version to support precision in float()
Some CPAN Testers use very old versions of Test2::V0.
1 parent 137a0a3 commit 7c67759

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ my %WriteMakefileArgs = (
2020
'ExtUtils::MakeMaker' => '0',
2121
},
2222
TEST_REQUIRES => {
23-
'Test2::V0' => '0',
23+
'Test2::V0' => '0.000098', # Support precision in float().
2424
'FindBin' => 0,
2525
},
2626
PREREQ_PM => {

cpanfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ requires 'experimental' => 0;
88
on configure => sub { requires 'ExtUtils::MakeMaker' => 0 };
99

1010
on test => sub {
11-
requires 'Test2::V0' => 0;
11+
requires 'Test2::V0' => '0.000098'; # Support precision in float().
1212
requires 'FindBin' => 0;
1313
};

0 commit comments

Comments
 (0)