Skip to content

Commit 9c5bd4f

Browse files
committed
Stop testing on Clojure 1.7
According to last year's "State of Clojure" survey less than 5% of devs are still on it. Likely the number has shrunk since then. In light of this there's no point in us trying to be compatible with 1.7 anymore.
1 parent 6618a0d commit 9c5bd4f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ script:
88
- make $TARGET
99
env:
1010
matrix:
11-
- VERSION=1.7 TARGET=test-clj
12-
- VERSION=1.7 TARGET=test-cljs
1311
- VERSION=1.8 TARGET=test-clj
1412
- VERSION=1.8 TARGET=test-cljs
1513
- VERSION=1.9 TARGET=test-clj

project.clj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
:password :env/clojars_password
4848
:sign-releases false}]]
4949

50-
:profiles {:provided {:dependencies [[org.clojure/clojure "1.7.0"]]}
50+
:profiles {:provided {:dependencies [[org.clojure/clojure "1.8.0"]]}
5151

5252
:dev {:repl-options {:nrepl-middleware [cider.nrepl/wrap-apropos
5353
cider.nrepl/wrap-classpath
@@ -80,8 +80,6 @@
8080
[boot/base "2.7.2"]
8181
[boot/core "2.7.2"]]}
8282

83-
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]
84-
[org.clojure/clojurescript "1.7.228" :scope "provided"]]}
8583
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]
8684
[org.clojure/clojurescript "1.8.51" :scope "provided"]]}
8785
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]

0 commit comments

Comments
 (0)