Skip to content

Commit

Permalink
Bump minimum Perl version to 5.36
Browse files Browse the repository at this point in the history
Change-Id: I5fefdb6c3c447fe46d01af9fbe69a9bc2acfcfb2
  • Loading branch information
kupietz authored and Akron committed Jan 22, 2024
1 parent 911fe97 commit 974ce53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
perl: [ '5.34', '5.32', '5.20' ]
perl: [ '5.38', '5.36' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
use v5.16;
use v5.36;
use strict;
use warnings;
use ExtUtils::MakeMaker;
Expand All @@ -25,6 +25,6 @@ WriteMakefile(
'Log::Any' => '1.708',
'IO::Compress::Zip' => '2.091'
},
MIN_PERL_VERSION => '5.016',
MIN_PERL_VERSION => '5.036',
EXE_FILES => [ './script/korapxml2conllu', './script/conllu2korapxml' ]
);

0 comments on commit 974ce53

Please sign in to comment.