From 066afe7cec08a3cb2ec25745e20085fe469ddd2c Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Tue, 9 Apr 2024 19:31:51 +0200 Subject: [PATCH] [mod] Drop Clojure v1.9 testing --- project.clj | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/project.clj b/project.clj index 33ff49a..c253179 100644 --- a/project.clj +++ b/project.clj @@ -19,7 +19,6 @@ :c1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha9"]]} :c1.11 {:dependencies [[org.clojure/clojure "1.11.2"]]} :c1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]} - :c1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :graal-tests {:source-paths ["test"] @@ -81,6 +80,6 @@ "build-once" ["do" ["clean"] ["cljsbuild" "once"]] "deploy-lib" ["do" ["build-once"] ["deploy" "clojars"] ["install"]] - "test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test"] - "test-cljs" ["with-profile" "+c1.12" "cljsbuild" "test"] + "test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10" "test"] + "test-cljs" ["with-profile" "+c1.12" "cljsbuild" "test"] "test-all" ["do" ["clean"] ["test-clj"] ["test-cljs"]]})