Skip to content

Commit dffc8c8

Browse files
committed
Test::Deep requires perl 5.012 and newer
1 parent 577f22d commit dffc8c8

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
strategy:
1111
matrix:
1212
perl-version:
13-
- '5.10-buster'
1413
- '5.12-buster'
1514
- '5.14-buster'
1615
- '5.16-buster'

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use strict;
22
use warnings;
33

4-
use 5.008001;
4+
use 5.012;
55

66
use ExtUtils::MakeMaker;
77

@@ -13,7 +13,7 @@ my %WriteMakefileArgs = (
1313
},
1414
"DISTNAME" => "Net-SAML2",
1515
"LICENSE" => "perl",
16-
"MIN_PERL_VERSION" => "5.008001",
16+
"MIN_PERL_VERSION" => "5.012",
1717
"NAME" => "Net::SAML2",
1818
"PREREQ_PM" => {
1919
"Carp" => 0,

cpanfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ requires "XML::Sig" => "0.52";
4040
requires "XML::Writer" => "0.625";
4141
requires "base" => "0";
4242
requires "namespace::autoclean" => "0";
43-
requires "perl" => "5.008_001";
43+
requires "perl" => "5.012";
4444
requires "strict" => "0";
4545
requires "vars" => "0";
4646
requires "warnings" => "0";

lib/Net/SAML2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use warnings;
33
package Net::SAML2;
44
our $VERSION = "0.63";
55

6-
require 5.008_001;
6+
require 5.012;
77

88
# ABSTRACT: SAML2 bindings and protocol implementation
99

0 commit comments

Comments
 (0)