From 90f7ff14ad915cc8df5a56de4e822efb3f8daf79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 2 Oct 2024 13:36:37 +0200 Subject: [PATCH] Support only Rubies that are supported upstream Co-authored-by: m-nakamura145 --- .github/workflows/ubuntu.yml | 2 +- gems.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 24328c3..89b5491 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, head ] + ruby: [ 3.1, 3.2, 3.3, head ] steps: - uses: actions/checkout@v4 - name: Setup ruby diff --git a/gems.gemspec b/gems.gemspec index f3b564d..a689aca 100644 --- a/gems.gemspec +++ b/gems.gemspec @@ -17,5 +17,5 @@ Gem::Specification.new do |spec| spec.homepage = 'https://github.com/rubygems/gems' spec.licenses = %w[MIT] spec.require_paths = %w[lib] - spec.required_ruby_version = '>= 2.1.9' + spec.required_ruby_version = '>= 3.1.0' end