From a4e4a739cdd1feeda8948253bfdd8564b6508592 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Wed, 13 Nov 2024 17:30:47 -0500 Subject: [PATCH] Merge pull request #23142 from kbrock/ruby33 Upgrading ruby to 3.3 (cherry picked from commit 3fb39c3b87d88a144d8bf03cf49b7a42dbf5bd8d) --- .github/workflows/ci.yaml | 1 - Gemfile | 6 ++---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1064a550bdd..a603e784cf0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,6 @@ jobs: matrix: ruby-version: - '3.1' - - '3.2' - '3.3' test-suite: - vmdb diff --git a/Gemfile b/Gemfile index ceb9beb662d..b684e8dd7a1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,5 @@ -raise "Ruby versions < 3.0.1 are unsupported!" if RUBY_VERSION < "3.0.1" -warn "Ruby versions >= 3.2.0 are untested!" if RUBY_VERSION >= "3.2.0" -raise "Ruby versions >= 3.4.0 are unsupported!" if RUBY_VERSION >= "3.4.0" - +ruby ">= 3.1.1", "< 3.5.0" +warn "Ruby versions >= 3.4.0 are untested!" if RUBY_VERSION >= "3.4.0" source 'https://rubygems.org' plugin "bundler-inject", "~> 2.0"