You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go is very intentional about backwards compatibility. Go 1.18 can build 1.16 for example.
Pants is being overly strict with [golang].expected_version. We currently require an exact match. That makes it harder to get a project building on multiple machines, such as how macOS and home brew use the newest version of go.
The better fix is for pants to install go for you, which is blocked by #13899. In the meantime, this is a good change.
The text was updated successfully, but these errors were encountered:
…ang].minimum_expected_version` (#15306)
Closes#15204.
This is much more flexible. If your project uses 1.17, you can still use 1.18. That works because Go's backwards compatibility.
[ci skip-rust]
Go is very intentional about backwards compatibility. Go 1.18 can build 1.16 for example.
Pants is being overly strict with
[golang].expected_version
. We currently require an exact match. That makes it harder to get a project building on multiple machines, such as how macOS and home brew use the newest version of go.The better fix is for pants to install go for you, which is blocked by #13899. In the meantime, this is a good change.
The text was updated successfully, but these errors were encountered: