From a0a3ea88f8b74db249ed969b1a8e75c9c8a6e256 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 8 Jun 2016 14:52:04 +0100 Subject: [PATCH] Bug 16695: Require Exception::Class 1.38 instead of 1.39 Looking at http://cpansearch.perl.org/src/DROLSKY/Exception-Class-1.40/Changes there is no need to require 1.39 Signed-off-by: Jacek Ablewicz --- C4/Installer/PerlDependencies.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index d84b51c..8302995 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -101,8 +101,8 @@ our $PERL_DEPS = { }, 'Exception::Class' => { 'usage' => 'Core', - 'required' => '1.39', - 'min_ver' => '1.39' + 'required' => '1.38', + 'min_ver' => '1.38' }, 'HTML::Scrubber' => { 'usage' => 'Core', -- 1.7.10.4