Explicitly use Perl 5.32

Was already implicitly required (since 59387ddb) because RevBank::Amount
uses the "isa" feature, which was introduced in Perl 5.32 (but no longer
experimental since 5.36, not 5.32 as the old comment said).

Perl 5.32 was released in June 2020, and ships with Debian bullseye
("oldstable") which was released in August 2021.
This commit is contained in:
Juerd Waalboer 2023-12-12 00:21:08 +01:00
parent 99154a4b62
commit 3470ebeb1c
12 changed files with 13 additions and 13 deletions

View file

@ -1,4 +1,4 @@
use v5.28;
use v5.32;
use warnings;
use Test::More;