Skip to content

Commit c1900f8

Browse files
authored
Relax Bundler version for development (#1086)
The upper bound on the Bundler version introduced in 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.
1 parent 9520c3a commit c1900f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.add_dependency 'ast', '~> 2.4.1'
3030
spec.add_dependency 'racc'
3131

32-
spec.add_development_dependency 'bundler', '>= 1.15', '< 3.0.0'
32+
spec.add_development_dependency 'bundler', '>= 1.15'
3333
spec.add_development_dependency 'rake', '~> 13.0.1'
3434
spec.add_development_dependency 'cliver', '~> 0.3.2'
3535

0 commit comments

Comments
 (0)