From ff08a8b0736c70f725baf34d4930487e0252d166 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Tue, 10 Feb 2026 18:25:08 -1000 Subject: [PATCH] require go1.24 or later --- chanqueue_test.go | 2 ++ go.mod | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/chanqueue_test.go b/chanqueue_test.go index a261e6f..b761ad9 100644 --- a/chanqueue_test.go +++ b/chanqueue_test.go @@ -1,3 +1,5 @@ +//go:build go1.25 + package chanqueue_test import ( diff --git a/go.mod b/go.mod index c6bfbc4..027db77 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/gammazero/chanqueue -go 1.25 +go 1.24 require github.com/gammazero/deque v1.2.1