Skip to content

Commit

Permalink
Drop support for Ruby 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
martijn committed Feb 12, 2022
1 parent 16fcb18 commit 41fc83d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1', 'jruby', 'truffleruby']
ruby-version: ['2.6', '2.7', '3.0', '3.1', 'jruby', 'truffleruby']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .standard.yml
@@ -1 +1 @@
ruby_version: 2.5.0
ruby_version: 2.6.9
4 changes: 2 additions & 2 deletions test/test_helper.rb
@@ -1,8 +1,8 @@
require 'simplecov'
require "simplecov"
SimpleCov.start

if ENV["CI"]
require 'codecov'
require "codecov"
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end

Expand Down
2 changes: 1 addition & 1 deletion xsv.gemspec
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.5"
spec.required_ruby_version = ">= 2.6"

spec.add_dependency "rubyzip", ">= 1.3", "< 3"

Expand Down

0 comments on commit 41fc83d

Please sign in to comment.