From 2f385a034a76d7fb9ec838017bf49969b2e58e15 Mon Sep 17 00:00:00 2001 From: Alexey Alexandrov Date: Sat, 6 Dec 2025 13:21:33 -0800 Subject: [PATCH] Require at least 1.24.9. Go 1.24.8 has a bug that is causing a test failure like in #970. To avoid running into this when the local version has the bug, require 1.24.9 at least. Tested with "go test ./..." on a machine where 1.24.8 is the default system-wide Go. The test run fails before this fix and passes after. --- browsertests/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browsertests/go.mod b/browsertests/go.mod index 9fe49848..a4a626a7 100644 --- a/browsertests/go.mod +++ b/browsertests/go.mod @@ -1,6 +1,6 @@ module github.com/google/pprof/browsertests -go 1.24.0 +go 1.24.9 // Use the version of pprof in this directory tree. replace github.com/google/pprof => ../ diff --git a/go.mod b/go.mod index 5abcf423..db65a4d9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/google/pprof -go 1.24.0 +go 1.24.9 require ( github.com/chzyer/readline v1.5.1