From 4133b79f5479774628fef54048e0b35e16680d40 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 14 Jan 2026 11:44:57 +0900 Subject: [PATCH] Relax Bundler version for development The upper bound on the Bundler version introduced in https://github.com/whitequark/parser/pull/543/commits/9c34ef3 is causing installation errors with the development version of Ruby 4.1-dev. ```console > bundle install (snip) Could not find compatible versions Because the current Bundler version (4.1.0.dev) does not satisfy bundler >= 1.15, < 3.0.0 and Gemfile depends on bundler >= 1.15, < 3.0.0, version solving has failed. ``` https://github.com/whitequark/parser/actions/runs/20980305950/job/60303672289 In practice, there is little need to specify an upper bound unless an actual compatibility issue with the Bundler version used for development arises. --- parser.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.gemspec b/parser.gemspec index 3c5bd3ec8..d4941fb9d 100644 --- a/parser.gemspec +++ b/parser.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'ast', '~> 2.4.1' spec.add_dependency 'racc' - spec.add_development_dependency 'bundler', '>= 1.15', '< 3.0.0' + spec.add_development_dependency 'bundler', '>= 1.15' spec.add_development_dependency 'rake', '~> 13.0.1' spec.add_development_dependency 'cliver', '~> 0.3.2'