Skip to content

Commit

Permalink
Update Ruby and Python on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed May 14, 2024
1 parent 496ba68 commit 98b1a5a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
ruby-version: '3.3'
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop
build:
strategy:
matrix:
ruby: [ 'jruby-9.2', '2.5', '3.1' ]
python: [ '3.6', '3.11' ]
ruby: [ 'jruby-9.3', 'jruby-9.4', '2.6', '3.3' ]
python: [ '3.6', '3.112' ]
platform: [ ubuntu-20.04, macos-latest, windows-2019 ]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
ruby-version: '3.3'
bundler-cache: true
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Build
run: bundle exec rake build
- name: Publish to RubyGems.org
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
This document provides a high-level view of the changes to the {project-name} by release.
For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.

== 2.4.1
== Unreleased

* Drop support for Ruby 2.5

== 2.4.1 (2023-11-13) - @slonopotamus

* Fix handling of Python virtual environments on Windows ({uri-repo})/issues/256[#256])

Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If a Python process dies, a new one will be spawned on the next pygments.rb requ
== System Requirements

- Python >= 3.6
- Ruby >= 2.5
- Ruby >= 2.6

== Installation

Expand Down

0 comments on commit 98b1a5a

Please sign in to comment.