thaJeztah opened a new pull request, #760: URL: https://github.com/apache/arrow-go/pull/760
The github.com/apache/arrow/go/v11/arrow/compute module was removed in commit f6e34421658726a6e5c98327a7e6b619ae798d34, making it part of the main module. The go version in go.mod was updated to go1.18, but older versions of the go toolchain could still be used; > Requirements > > Despite the go.mod stating go1.18, everything except for the compute package > is able to be built with go1.17 (and most is also compatible with go1.16). Before Go 1.21, the go line in go.mod was effectively advisory: older toolchains might still try to build the module, and only complain if they hit something unsupported. Starting with Go 1.21 (backported to go1.19.3 and go1.20.8), the go line became a strict minimum requirement. https://go.dev/doc/go1.21 Commit ddfa8159f9cace619b0da2898c7aea0906393655 updated the go version in go.mod to go1.21.0, no longer allowing older toolchains to be used. This patch removes the mentions of older toolchains. ### Rationale for this change ### What changes are included in this PR? ### Are these changes tested? ### Are there any user-facing changes? -- 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]
