From 4e34eb40f18572d5e87278b19caac8dc9b8deea7 Mon Sep 17 00:00:00 2001 From: Graham Ollis Date: Thu, 9 Jan 2025 19:09:18 -0700 Subject: [PATCH] use List::Util for `any` instead of List::MoreUtils --- lib/Dist/Zilla/PluginBundle/TestingMania.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Dist/Zilla/PluginBundle/TestingMania.pm b/lib/Dist/Zilla/PluginBundle/TestingMania.pm index 9c30556..7a1f952 100644 --- a/lib/Dist/Zilla/PluginBundle/TestingMania.pm +++ b/lib/Dist/Zilla/PluginBundle/TestingMania.pm @@ -4,7 +4,7 @@ use strict; use warnings; # VERSION -use List::MoreUtils qw( any ); +use List::Util 1.33 qw( any ); use Moose; use namespace::autoclean; with 'Dist::Zilla::Role::PluginBundle::Easy';