Skip to content

Commit

Permalink
Limit ipaddr version in Ruby 2.3 CI
Browse files Browse the repository at this point in the history
ipaddr 1.2.7 has a bug in that it advertises Ruby 2.3 support,
but requires Ruby 2.4.
  • Loading branch information
jeremyevans committed Oct 21, 2024
1 parent f11e083 commit 0b23ebe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ if RUBY_VERSION < '2.0'
gem 'mime-types', '< 3'
end

if RUBY_VERSION >= '2.3' && RUBY_VERSION < '2.4'
gem 'ipaddr', '< 1.2.7'
end

if RUBY_VERSION < '2.1'
gem 'jwt', '< 2'
else
Expand Down

0 comments on commit 0b23ebe

Please sign in to comment.