Skip to content

Commit

Permalink
internal/dl: update system requirements
Browse files Browse the repository at this point in the history
As described at https://go.dev/doc/go1.21#ports:

- Go 1.21 requires at least Windows 10 or Windows Server 2016;
  support for previous versions has been discontinued.
- Go 1.21 requires macOS 10.15 Catalina or later;
  support for previous versions has been discontinued.

For golang/go#23011.
For golang/go#52188.

Change-Id: I7a3dd6e82400b238a2220d34bcffbbfc2f1b68a1
GitHub-Last-Rev: c637a1c
GitHub-Pull-Request: #240
Reviewed-on: https://go-review.googlesource.com/c/website/+/518235
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Heschi Kreinick <heschi@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
  • Loading branch information
Zxilly authored and gopherbot committed Aug 10, 2023
1 parent 74679e8 commit 05846d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/dl/dl.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ type Feature struct {
var featuredFiles = []Feature{
{
Platform: "Microsoft Windows",
Requirements: "Windows 7 or later, Intel 64-bit processor",
Requirements: "Windows 10 or later, Intel 64-bit processor",
fileRE: regexp.MustCompile(`\.windows-amd64\.msi$`),
},
{
Expand All @@ -170,7 +170,7 @@ var featuredFiles = []Feature{
},
{
Platform: "Apple macOS (x86-64)",
Requirements: "macOS 10.13 or later, Intel 64-bit processor",
Requirements: "macOS 10.15 or later, Intel 64-bit processor",
fileRE: regexp.MustCompile(`\.darwin-amd64\.pkg$`),
},
{
Expand Down

0 comments on commit 05846d2

Please sign in to comment.