Skip to content

Commit

Permalink
Further restrict bigdecimal version on Ruby 1.9.3 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Sep 19, 2023
1 parent 55d5f39 commit 1ecfdf1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ else
gem 'minitest', '>= 5.7.0'
end

if RUBY_VERSION < '2.4'
if RUBY_VERSION < '2.0'
gem 'bigdecimal', '<1.2'
elsif RUBY_VERSION < '2.4'
gem 'bigdecimal', '<1.3'
else
gem 'bigdecimal'
Expand Down

0 comments on commit 1ecfdf1

Please sign in to comment.