From fc0eaf2be6be250d3ffca15d00df113e2c7a3c4a Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Tue, 19 Sep 2023 16:26:27 -0400 Subject: [PATCH] Pin IO::Socket::IP to 0.41 on Perls < 5.14 --- cpanfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpanfile b/cpanfile index 9cb1f8a..9e2f0b6 100644 --- a/cpanfile +++ b/cpanfile @@ -73,6 +73,10 @@ if ( "$]" >= 5.012 ) { requires 'Pod::Coverage::TrustPod'; } +if ( "$]" < 5.014 ) { + requires 'IO::Socket::IP', '==0.41'; +} + if ( "$]" >= 5.020 ) { requires 'Dist::Zilla::PluginBundle::Author::ETHER'; requires 'Dist::Zilla::PluginBundle::Author::OALDERS';