summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorAdrien Hopkins <adrien.p.hopkins@gmail.com>2023-11-07 07:50:23 -0500
committerAdrien Hopkins <adrien.p.hopkins@gmail.com>2023-11-09 19:47:16 -0500
commit2cc0f9607872b8bd4fc6be2656a7b7a769b538b2 (patch)
tree5e14b4ffcbf7c0d85f17b0ed468a08b4bafa11c1 /go.mod
parent7d2916a50187992f72e80ed667468e8c0b125d27 (diff)
Reduce golang requirement to go1.18
go1.21, the previous requirement, was released a few months ago, so not all systems have adopted it. go1.18 is old enough that most systems should support it, but it introduces generics, which my testing code is highly dependent on, so I can't easily go any earlier.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 3e9c6d8..d3ad6f5 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
module aphopkins/radix_info
-go 1.21
+go 1.18