Skip to content

Commit 7922e4f

Browse files
authored
Unbreak CI (#266)
1 parent 968c629 commit 7922e4f

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
build:
2121
strategy:
2222
matrix:
23-
ruby: [ 'jruby-9.3', 'jruby-9.4', '2.6', '3.4' ]
23+
ruby: [ 'jruby', '2.7', '3.4' ]
2424
python: [ '3.8', '3.13' ]
2525
platform: [ubuntu-latest, windows-latest, macos-latest]
2626
runs-on: ${{ matrix.platform }}

.rubocop.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
AllCops:
2-
NewCops: enable
3-
TargetRubyVersion: 2.6
2+
NewCops: disable
43
Gemspec/RequireMFA:
54
Enabled: false
65
Metrics/AbcSize:

CHANGELOG.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
55
This document provides a high-level view of the changes to the {project-name} by release.
66
For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.
77

8+
== Unreleased
9+
10+
* Drop support for Ruby 2.6.
11+
The oldest supported is 2.7 now.
12+
813
== 3.0.0 (2024-05-14) - @slonopotamus
914

1015
* Drop support for Ruby 2.5.
11-
The oldest supported is 3.6 now.
16+
The oldest supported is 2.6 now.
1217
* Drop support for Python 3.6 and 3.7.
1318
The oldest supported is 3.8 now.
1419
* Update Pygments to 2.18.0

pygments.rb.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Gem::Specification.new do |s|
2222
'source_code_uri' => s.homepage
2323
}
2424

25-
s.required_ruby_version = '>= 2.6.0'
25+
s.required_ruby_version = '>= 2.7.0'
2626

2727
s.add_development_dependency 'rake', '~> 13.3.0'
28-
s.add_development_dependency 'rubocop', '~> 1.50.2'
28+
s.add_development_dependency 'rubocop', '~> 1.70.0'
2929
s.add_development_dependency 'test-unit', '~> 3.6.0'
3030

3131
s.files = `git ls-files -z`.split("\0").reject { |f| File.symlink?(f) }

0 commit comments

Comments
 (0)