Skip to content

Commit

Permalink
Text::CSV_XS: Set min version to 1.52
Browse files Browse the repository at this point in the history
Otherwise we suffer seg faults.
  • Loading branch information
shawnlaffan committed Dec 2, 2023
1 parent f8f139e commit 670c6df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ my %common_reqs = (
"Spreadsheet::ReadSXC" => "0.28",
"Statistics::Descriptive" => "3.0608",
"Statistics::Sampler::Multinomial" => '1.02',
"Text::CSV_XS" => "1.04",
"Text::CSV_XS" => "1.52",
"Text::Fuzzy" => 0,
"Text::Wrapper" => 0,
"Tree::R" => 0,
Expand Down
2 changes: 1 addition & 1 deletion cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ requires "Spreadsheet::Read", "0.82";
requires "Spreadsheet::ReadSXC", "0.28";
requires "Statistics::Descriptive", "3.0608";
requires "Statistics::Sampler::Multinomial", '1.02';
requires "Text::CSV_XS", "1.04";
requires "Text::CSV_XS", "1.52";
requires "Text::Fuzzy";
requires "Text::Wrapper";
requires "Tree::R";
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use if ON_WINDOWS, 'Win32::LongPath';
#use Data::Dumper qw /Dumper/;
use YAML::Syck;
#use YAML::XS;
use Text::CSV_XS;
use Text::CSV_XS '1.52';
use Scalar::Util qw /weaken isweak blessed looks_like_number reftype/;
use List::MoreUtils qw /none/;
use List::Util qw /first/;
Expand Down

0 comments on commit 670c6df

Please sign in to comment.