From bbb7e4b0ae032ea81a1d5761bd9ef5c35429256f Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Feb 2026 15:45:39 +0000 Subject: [PATCH] Updating to latest version of supported Go (1.24.13) --- go.mod | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 471429d..d21d7c1 100644 --- a/go.mod +++ b/go.mod @@ -1,11 +1,17 @@ module github.com/stitchfix/mab -go 1.14 +go 1.24.13 require ( - github.com/kr/pretty v0.1.0 // indirect github.com/stretchr/testify v1.5.1 - golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect gonum.org/v1/gonum v0.8.2 +) + +require ( + github.com/davecgh/go-spew v1.1.0 // indirect + github.com/kr/pretty v0.1.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect + gopkg.in/yaml.v2 v2.2.2 // indirect )