From 66053a12c765979c2e6902dada3cb91379a77ee0 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sun, 30 Aug 2026 23:07:31 -0700 Subject: [PATCH] Raise Julia floor to 1.10 to match ReadStat ReadStat now requires julia 1.10, because ReadStat_jll 1.1.8 and newer require at least 1.6 and anything lower silently resolves back to the December 2020 binary. Follow it here rather than leave StatFiles advertising support for julia versions its dependency will not resolve on. This mirrors commit fb42070, which set the floor to 1.3 for the same reason when ReadStat was at 1.3. The ReadStat compat bound already admits 1.2 via its "1" caret; tightening it to drop the stale 0.4.1 range waits until ReadStat 1.2.0 registers. Co-Authored-By: Claude Opus 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2227c02..5df199f 100644 --- a/Project.toml +++ b/Project.toml @@ -28,4 +28,4 @@ ReadStat = "0.4.1, 1" TableShowUtils = "0.1.1, 0.2, 0.3, 1" TableTraits = "0.3.1, 0.4, 1" TableTraitsUtils = "0.2.1, 0.3, 0.4, 1" -julia = "1.3" +julia = "1.10"