Commit 2e44b72
authored
chore: remove mentions of compatibility with go toolchain < go1.18 (#760)
The github.com/apache/arrow/go/v11/arrow/compute module was removed in
commit f6e3442, 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 ddfa815 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?
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>1 parent 786d91a commit 2e44b72
3 files changed
Lines changed: 2 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | 26 | | |
32 | 27 | | |
33 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | 23 | | |
27 | 24 | | |
28 | 25 | | |
| |||
0 commit comments