From 7a419cff64da2c58deb868b5c6f1e552b90ffe61 Mon Sep 17 00:00:00 2001 From: Ian Kluft Date: Sat, 4 May 2024 11:41:19 -0700 Subject: [PATCH] back off Modern::Perl requirement from 2018 to 2015 to fix 5.20 tests --- src/perl/bin/lon-tz.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perl/bin/lon-tz.pl b/src/perl/bin/lon-tz.pl index daadcd9..d0196c0 100755 --- a/src/perl/bin/lon-tz.pl +++ b/src/perl/bin/lon-tz.pl @@ -11,7 +11,7 @@ # pragmas to silence some warnings from Perl::Critic ## no critic (Modules::RequireExplicitPackage) # This solves a catch-22 where parts of Perl::Critic want both package and use-strict to be first -use Modern::Perl qw(2018); +use Modern::Perl qw(2015); ## use critic (Modules::RequireExplicitPackage) use strict;