Skip to content

Commit

Permalink
dev: graal native-test now uses clojure 1.12
Browse files Browse the repository at this point in the history
Was defaulting to clojure 1.11. No need to test against 1.11 anymore.
  • Loading branch information
lread committed Feb 25, 2025
1 parent 90cd315 commit 6f3cb42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/test_native.clj
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@
in-bytes))))

(defn -main [& args]
(let [valid-clj-version-opt-values ["1.11" "1.12"]
(let [valid-clj-version-opt-values ["1.12"]
spec {:clj-version
{:ref "<version>"
:desc "The Clojure version to test against."
:coerce :string
:default-desc "1.11"
:default "1.11"
:default-desc "1.12"
:default "1.12"
:validate
{:pred (set valid-clj-version-opt-values)
:ex-msg (fn [_m]
Expand Down

0 comments on commit 6f3cb42

Please sign in to comment.