Skip to content

Commit

Permalink
drop support for ruby 2.6 & 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
noraj committed Mar 23, 2024
1 parent cbc0f66 commit e287280
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7']
ruby-version: ['3.3', '3.2', '3.1', '3.0']
steps:
- uses: actions/checkout@v4 # https://github.com/actions/checkout
- name: Set up Ruby
Expand Down
4 changes: 2 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 3.0
NewCops: enable
SuggestExtensions: false
Exclude:
Expand All @@ -19,4 +19,4 @@ Metrics/CyclomaticComplexity:
Metrics/MethodLength:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Enabled: false
2 changes: 1 addition & 1 deletion bqm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Gem::Specification.new do |s|
'rubygems_mfa_required' => 'true'
}

s.required_ruby_version = ['>= 2.6.0', '< 4.0']
s.required_ruby_version = ['>= 3.0.0', '< 4.0']
end

0 comments on commit e287280

Please sign in to comment.