From d4aac48bb1a15b9011a62f4c82748f56aff07ace 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 Content-Type: text/plain; charset=utf-8 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 Signed-off-by: Marcel de Rooy --- 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