From 06e72b51dbf15ea9e20146451e2c523389633707 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Thu, 21 Jul 2022 15:04:54 -0300 Subject: [PATCH] fix: example use same go version as root Signed-off-by: Carlos A Becker --- examples/go.mod | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/examples/go.mod b/examples/go.mod index 30b64bf..546074f 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -1,17 +1,11 @@ module example -go 1.18 +go 1.12 + +replace github.com/muesli/kmeans => ../ require ( github.com/lucasb-eyer/go-colorful v1.2.0 github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 - github.com/muesli/kmeans v0.3.0 + github.com/muesli/kmeans v0.0.0-00010101000000-000000000000 ) - -require ( - github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect - github.com/wcharczuk/go-chart/v2 v2.1.0 // indirect - golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect -) - -replace github.com/muesli/kmeans => ../