Skip to content

Commit

Permalink
Issue #2464: require YAML::XS 0.62
Browse files Browse the repository at this point in the history
Because this was the current version when Perl 5.24 was released
  • Loading branch information
bschmalhofer committed Aug 15, 2023
1 parent fae3362 commit e318225
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions bin/otobo.CheckModules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -586,10 +586,11 @@ =head1 DESCRIPTION
},
},
{
Module => 'YAML::XS',
Required => 1,
Comment => 'Required for fast YAML processing.',
InstTypes => {
Module => 'YAML::XS',
Required => 1,
VersionRequired => '0.62',
Comment => 'Required for fast and correct YAML processing.',
InstTypes => {
aptget => 'libyaml-libyaml-perl',
emerge => 'dev-perl/YAML-LibYAML',
zypper => 'perl-YAML-LibYAML',
Expand Down
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ requires 'URI';
# Required for XML processing.
requires 'XML::LibXML';

# Required for fast YAML processing.
requires 'YAML::XS';
# Required for fast and correct YAML processing.
requires 'YAML::XS', ">= 0.62";

# For internationalised sorting
requires 'Unicode::Collate';
Expand Down
4 changes: 2 additions & 2 deletions cpanfile.docker
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ requires 'URI';
# Required for XML processing.
requires 'XML::LibXML';

# Required for fast YAML processing.
requires 'YAML::XS';
# Required for fast and correct YAML processing.
requires 'YAML::XS', ">= 0.62";

# For internationalised sorting
requires 'Unicode::Collate';
Expand Down

0 comments on commit e318225

Please sign in to comment.