Skip to content

Commit

Permalink
Require Feature::Compat::Class (and, maybe, Object::Pad)
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Sep 24, 2023
1 parent 961a9b5 commit ae52216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ my $build = Module::Build->new(
requires => {
perl => '5.10.0',
Carp => 0,
Moo => 0,
Types::Standard => 0,
Feature::Compat::Class => 0,
($] < 5.038 ? (Object::Pad => 0) : ()),
},
build_requires => {
Test::NoWarnings => 0,
Expand Down

2 comments on commit ae52216

@grr
Copy link

@grr grr commented on ae52216 Sep 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You also need to bump the required perl version to 5.14 to match that of Feature::Compat::Class

@davorg
Copy link
Collaborator Author

@davorg davorg commented on ae52216 Sep 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the suggestion. But, actually, I need 5.26 because I'm using subroutine signatures as well.

Please sign in to comment.