kou commented on issue #40663: URL: https://github.com/apache/arrow/issues/40663#issuecomment-2007144110
This was happen by https://github.com/apache/arrow/blob/ed47ad22c8537b32abf27580e75fcf514be11f7e/dev/release/post-13-homebrew.sh#L50-L57 right? It seems that this is a bug of https://github.com/Homebrew/brew . Could you report this to the upstream? I think that this is needed: ```diff diff --git a/Library/Homebrew/dev-cmd/bump-formula-pr.rb b/Library/Homebrew/dev-cmd/bump-formula-pr.rb index 4ed5dbb345..e3c853eb1b 100644 --- a/Library/Homebrew/dev-cmd/bump-formula-pr.rb +++ b/Library/Homebrew/dev-cmd/bump-formula-pr.rb @@ -464,6 +464,7 @@ module Homebrew specs[:tag] = tag if tag.present? version = Version.detect(url, **specs) return if version.null? + version = version.to_s end check_throttle(formula, version) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
