Commit 7a927e34 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Requiring Perl 5.14 is sufficient

parent c351b6df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ Module::Build->new(
	module_name => 'Travel::Status::DE::IRIS',
	license => 'perl',
	requires => {
		'perl' => '5.18.0',
		'perl' => '5.14.2',
		'Carp' => 0,
		'Class::Accessor' => 0,
		'DateTime' => 0,
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env perl
use strict;
use warnings;
use 5.018;
use 5.014;
use utf8;

no if $] >= 5.018, warnings => 'experimental::smartmatch';
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package Travel::Status::DE::IRIS;

use strict;
use warnings;
use 5.018;
use 5.014;

no if $] >= 5.018, warnings => "experimental::smartmatch";

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package Travel::Status::DE::IRIS::Result;

use strict;
use warnings;
use 5.010;
use 5.014;
use utf8;

no if $] >= 5.018, warnings => 'experimental::smartmatch';
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package Travel::Status::DE::IRIS::Stations;

use strict;
use warnings;
use 5.018;
use 5.014;
use utf8;

use List::MoreUtils qw(firstval);
Loading