Skip to content

Commit 3149a3f

Browse files
committed
rebase: apply review feedback on Test-More#303
## Summary - **Added missing `Getopt::Yath` >= 2.000008 dependency to `cpanfile`** — the `Getopt::Yath` package was broken out into a separate CPAN distribution but the dependency was accidentally dropped from `cpanfile` during a prior rebase, causing smoker failures (`Can't locate Getopt/Yath/Settings.pm in @INC`). - **Added missing `Getopt::Yath` >= 2.000008 dependency to `Makefile.PL`** (both `PREREQ_PM` and `%FallbackPrereqs` sections) — same root cause; the version matches `dist.ini` line 101 which already declares it correctly.
1 parent 65349e5 commit 3149a3f

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

Makefile.PL

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ my %WriteMakefileArgs = (
7070
"File::ShareDir" => 0,
7171
"File::Spec" => 0,
7272
"File::Temp" => 0,
73+
"Getopt::Yath" => "2.000008",
7374
"HTTP::Tiny" => 0,
7475
"HTTP::Tiny::Multipart" => 0,
7576
"HTTP::Tiny::UNIX" => 0,
@@ -182,6 +183,7 @@ my %FallbackPrereqs = (
182183
"File::ShareDir" => 0,
183184
"File::Spec" => 0,
184185
"File::Temp" => 0,
186+
"Getopt::Yath" => "2.000008",
185187
"HTTP::Tiny" => 0,
186188
"HTTP::Tiny::Multipart" => 0,
187189
"HTTP::Tiny::UNIX" => 0,

cpanfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ requires "Email::Sender::Simple" => "0";
2222
requires "Email::Simple" => "0";
2323
requires "Email::Simple::Creator" => "0";
2424
requires "Fcntl" => "0";
25+
requires "Getopt::Yath" => "2.000008";
2526
requires "File::Find" => "0";
2627
requires "File::Path" => "2.11";
2728
requires "File::ShareDir" => "0";

0 commit comments

Comments
 (0)