Skip to content

Commit

Permalink
Only restrict bigdecimal version in CI on CRuby
Browse files Browse the repository at this point in the history
The restriction is not needed on JRuby and breaks JRuby 9.1 CI.
  • Loading branch information
jeremyevans committed Sep 14, 2023
1 parent fd7c173 commit cc7afda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ else
gem 'nokogiri'
end

if RUBY_VERSION < '2.4'
gem 'bigdecimal', '<1.3'
end

if RUBY_VERSION < '2.3'
gem 'i18n', '<1.5'
end
Expand Down Expand Up @@ -83,6 +79,10 @@ platforms :ruby do
if sequel_pg
gem 'sequel_pg', git: 'https://github.com/jeremyevans/sequel_pg', require: 'sequel'
end

if RUBY_VERSION < '2.4'
gem 'bigdecimal', '<1.3'
end
end

# JRuby Adapter Dependencies
Expand Down

0 comments on commit cc7afda

Please sign in to comment.