Skip to content

Commit

Permalink
Remove incorrect version constraint
Browse files Browse the repository at this point in the history
Because Rails 7.1 is released, >= 7.0.0.alpha would install 7.1, and a
nokogiri version that doesn't work on Ruby 2.7. This caused 2.7 / 7.0 CI
to fail.
  • Loading branch information
gmcgibbon committed Dec 15, 2023
1 parent 28715d7 commit d438f65
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/support/acceptance_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class AcceptanceTest < ActiveSupport::TestCase
def rails_version
if ENV['RAILS_VERSION'] == "edge"
"7.1.0.alpha"
elsif ENV['RAILS_VERSION'] == "7.0"
">= 7.0.0.alpha"
else
"~> #{ENV['RAILS_VERSION'] || "6.1"}.0"
end
Expand Down

0 comments on commit d438f65

Please sign in to comment.