Skip to content

Commit 126d3d4

Browse files
committed
Work to put back requirement to 5.8
1 parent 7a7c529 commit 126d3d4

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

.github/workflows/testsuite.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: perl -V
2424
run: perl -V
2525
- name: Install Dependencies
@@ -47,6 +47,8 @@ jobs:
4747
matrix:
4848
perl-version:
4949
- "latest"
50+
- "5.42"
51+
- "5.40"
5052
- "5.38"
5153
- "5.36"
5254
- "5.34"
@@ -62,12 +64,13 @@ jobs:
6264
- "5.14"
6365
- "5.12"
6466
- "5.10"
67+
- "5.8"
6568

6669
container:
6770
image: perl:${{ matrix.perl-version }}
6871

6972
steps:
70-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7174
- name: perl -V
7275
run: perl -V
7376
- name: Install Dependencies
@@ -91,7 +94,7 @@ jobs:
9194
PERL_CARTON_PATH: $GITHUB_WORKSPACE/local
9295

9396
steps:
94-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9598
- name: Set up Perl
9699
run: brew install perl
97100
- name: perl -V
@@ -110,7 +113,7 @@ jobs:
110113
runs-on: windows-latest
111114

112115
steps:
113-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
114117
- name: Set up Perl
115118
run: |
116119
choco install strawberryperl

Changes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Revision history for Perl extension HTML::Tagset
22

3+
2025-12-31 Andy Lester
4+
5+
* Release 3.26
6+
7+
Drops the required Perl back to 5.8.
8+
39
2024-03-11 Andy Lester
410

511
* Release 3.24

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main;
22

3-
use 5.010;
3+
use 5.008;
44

55
use strict;
66

@@ -12,7 +12,7 @@ my %parms = (
1212
ABSTRACT => 'Data tables useful in parsing HTML',
1313
VERSION_FROM => 'lib/HTML/Tagset.pm',
1414
LICENSE => 'artistic_2',
15-
MIN_PERL_VERSION => 5.010001,
15+
MIN_PERL_VERSION => 5.008,
1616
CONFIGURE_REQUIRES => {
1717
'ExtUtils::MakeMaker' => '6.46',
1818
},

0 commit comments

Comments
 (0)