Skip to content

Commit fcea94c

Browse files
committed
Remove incorrect version constraint
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. Also use >= 7.1.0.alpha in edge case, there is no alpha right now.
1 parent 28715d7 commit fcea94c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/support/acceptance_test.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ class AcceptanceTest < ActiveSupport::TestCase
1212

1313
def rails_version
1414
if ENV['RAILS_VERSION'] == "edge"
15-
"7.1.0.alpha"
16-
elsif ENV['RAILS_VERSION'] == "7.0"
17-
">= 7.0.0.alpha"
15+
">= 7.1.0.alpha"
1816
else
1917
"~> #{ENV['RAILS_VERSION'] || "6.1"}.0"
2018
end

0 commit comments

Comments
 (0)