From 0b23ebe6e40cae246c7d21dfa2ec68988a5c8c2d Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Mon, 21 Oct 2024 13:12:41 -0700 Subject: [PATCH] Limit ipaddr version in Ruby 2.3 CI ipaddr 1.2.7 has a bug in that it advertises Ruby 2.3 support, but requires Ruby 2.4. --- .ci.gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci.gemfile b/.ci.gemfile index b8c1f4d9..faa67927 100644 --- a/.ci.gemfile +++ b/.ci.gemfile @@ -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