Skip to content

Commit

Permalink
Drop support for Ruby 2.5
Browse files Browse the repository at this point in the history
It's no longer supported by minitest, making
it hard to support.
  • Loading branch information
byroot committed Jan 15, 2024
1 parent 2b4d546 commit 64c7661
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.5"
ruby-version: "3.3"
bundler-cache: true
- name: Lint
run: bundle exec rubocop
Expand All @@ -28,7 +28,7 @@ jobs:
matrix:
os: ["ubuntu-latest"]
redis: ["6.2"]
ruby: ["ruby-head", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "jruby-9.3.6.0", "truffleruby"]
ruby: ["ruby-head", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby-9.3.6.0", "truffleruby"]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand Down
2 changes: 1 addition & 1 deletion redis-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.summary = "Simple low-level client for Redis 6+"
spec.homepage = "https://github.com/redis-rb/redis-client"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.5.0"
spec.required_ruby_version = ">= 2.6.0"

spec.metadata["allowed_push_host"] = "https://rubygems.org"

Expand Down

0 comments on commit 64c7661

Please sign in to comment.